Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6119013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:30:09+00:00 2026-05-23T15:30:09+00:00

Part of a bash script I’m making involves rar splitting files and then moving

  • 0

Part of a bash script I’m making involves rar splitting files and then moving the split files to another directory once they are done.

So if I have a file like “test file.txt”, it would first get rarred to “[test] file.txt.part1.rar”, “test file.txt.part2.rar”, and then both of the rar’s would get moved to another directory.

I have the rar bit working fine, but i’m having trouble on the find & move.

Here’s my script:

#!/bin/bash

# [...]    

rar a -m0 -v104857600b "$1.rar" "$1";

find $folder -name "$1.part*" -exec mv {} $someotherfolder \;

However it doesn’t seem to be working. I’ve tested that find one liner from the shell and I’m guessing the problem is because the files have parenthesis in the names -> “[” and “]”

What do you guys think?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T15:30:10+00:00Added an answer on May 23, 2026 at 3:30 pm

    ‘[‘ and ‘]’ are used in shell to describe sets of characters. You have to escape them with ‘\’ to get the correct behavior. If you do not escape them you tell find to look for files with ‘t’ or ‘e’ or ‘s’ or ‘t’ 🙂

    To do that with the parameter $1, you have to use something like :

    param=$(echo $1 | sed 's@\[@\\[@g'| sed 's@\]@\\]@g')
    

    and use ‘$param’ instead of ‘$1’

    my 2 cents

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Looking for a solution in bash (will be part of a larger script). Given
If bash autocomplete finds multiple files, it only autocompletes the common part and I
As part of an intricate BASH script, I'd like to execute a command on
I have a bash script to upload some files to my webserver. The problem
I have such part of bash script if [ ! -e $f -o -L
I have a bash script which calls another bash script, like so: #!/bin/bash echo
In a bash script, files with spaces show up as File\ with\ spaces.txt and
I'm having a little issue getting quite a simple bash script running. The part
i was making a bash script for my server which pack some directories with
Part of a new product I have been assigned to work on involves server-side

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.