Skip to content

Instantly share code, notes, and snippets.

@raks437
Last active August 29, 2015 14:24
Show Gist options
  • Save raks437/fe85d4fed478b80e4b72 to your computer and use it in GitHub Desktop.
Save raks437/fe85d4fed478b80e4b72 to your computer and use it in GitHub Desktop.
Rename Multiple Files using Linux or Bash shell
for file in aro_tty-mIF-*_opt;
do
mv -i "${file}" "${file/-mIF-/-mImpFRA-}";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment