I'm trying to write this shell script to create in the parent directory a copy of the folders found in the current directory. So far, I wrote this:
for folder in *; do
mkdir ../$folder;
done
I'd like to do a "find and replace" operation on the folder name, so that, for instance, folder named graphics-HD becomes copied as graphics-SD
Sorry if it's simplistic, but I am absolutely not experienced with shell script / unix.
Thanks a lot! J.