Skip to content

Instantly share code, notes, and snippets.

@fabiocruzcoelho
Created February 23, 2017 13:35
Show Gist options
  • Save fabiocruzcoelho/ebc1a4ef0990b4bb72ae18293b2ff9c2 to your computer and use it in GitHub Desktop.
Save fabiocruzcoelho/ebc1a4ef0990b4bb72ae18293b2ff9c2 to your computer and use it in GitHub Desktop.
Comando for para renomer arquivos em lote.
for file in *_f2; do mv "$file" "${file/_f2/_f1}" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment