Skip to content

Instantly share code, notes, and snippets.

@ramesaliyev
Created May 28, 2018 10:20
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 ramesaliyev/12b65d893bfd6c28d89a94b4e1de301c to your computer and use it in GitHub Desktop.
Save ramesaliyev/12b65d893bfd6c28d89a94b4e1de301c to your computer and use it in GitHub Desktop.
Simple scripts for rename bulk files with bash.
for file in ADA202_*.pdf
do
mv "$file" "${file/ADA202_/}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment