Skip to content

Instantly share code, notes, and snippets.

@tacensi
Created March 21, 2019 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tacensi/e4c981b755eb7c703f86d819d8f59824 to your computer and use it in GitHub Desktop.
Save tacensi/e4c981b755eb7c703f86d819d8f59824 to your computer and use it in GitHub Desktop.
Rename multiple files in bash
for f in $(find ./ -name "*ã*")
do
mv -i "${f}" "${f/ã/ã}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment