So I'm having a problem batch renaming files with special characters in their names.
in Bash (terminal command prompt)
I can use this command to change files with a " at the beginning and end of the filename.
for i in *; do mv $i ${i/\"/};done;for i in *;do mv $i ${i/%\"/};done
My problem is that the characters I want to remove are the open and close quotes: option+[ and shift+option+[
I tried typing those characters into the line above instead of the escaped " but no luck.
Any ideas?
in Bash (terminal command prompt)
I can use this command to change files with a " at the beginning and end of the filename.
for i in *; do mv $i ${i/\"/};done;for i in *;do mv $i ${i/%\"/};done
My problem is that the characters I want to remove are the open and close quotes: option+[ and shift+option+[
I tried typing those characters into the line above instead of the escaped " but no luck.
Any ideas?