Warning: preg_replace(): Compilation failed: escape sequence is invalid in character class at offset 4 in /home/customer/www/theunixtips.com/public_html/wp-content/plugins/resume-builder/includes/class.resume-builder-enqueues.php on line 59

bash : brace expansion for automatic substitution

Bash expands a list of strings separated by commas with in braces to a list of strings separated by spaces. For example

[unixite@theunixtips:~/> echo 111-{aa,bb,cc}+{xx,yy,zz}-222
111-aa+xx-222 111-aa+yy-222 111-aa+zz-222 111-bb+xx-222 111-bb+yy-222 111-bb+zz-222 111-cc+xx-222 111-cc+yy-222 111-cc+zz-222
unixite@theunixtips:~/>

There should not be any space between suffix/prefix and the start/end bracket. Otherwise it is considered as a separate list. Now coming to a real world example where you can make use of this.

mv process.log{,.old} #This will move process.log to process.log.old
mv process.log.{old,oldest} #This will move process.log.old to process.log.oldest

2 Comments

  1. Note that if you have to use quotes to handle filenames with special characters, you can’t use this form:

    mv “filename with spaces.txt{,.old}” ;# <— doesn't work

    Instead you have to use this form:

    mv "filename with spaces.txt"{,".extension with spaces"}

    If the extension might have special characters, such as when the string is in a variable, you should probably quote that as well:

    prefix="file name with spaces.txt"
    suffix=".extension with spaces"
    mv "$prefix"{,"$suffix"}

Comments are closed.