Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in /homepages/15/d790331382/htdocs/wp-content/plugins/wp-syntax/wp-syntax.php on line 383
when you want to copy or move files to slightly different names (e.g. replacing only one letter in the filename), you can use
1 | for i in `ls *`; do cp $i `echo $i | sed "s/search/replace/g"`; done |
found on http://www.minihowtos.net/copy-and-rename-multiple-files