Skip to content

Instantly share code, notes, and snippets.

@shturm
Last active August 25, 2016 10:56
Show Gist options
  • Save shturm/d987433ef1d015291484e9d27e9912c8 to your computer and use it in GitHub Desktop.
Save shturm/d987433ef1d015291484e9d27e9912c8 to your computer and use it in GitHub Desktop.
BashCheatsheet

Bash Cheatsheet

Rename recursively extensions of files

Change OldExtension and NewExtension :

find . -type f -name *.mqh -exec sh -c 'mv "$1" "${1%.OldExtension}.NewExtension"' _ {} \;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment