Created
June 19, 2018 03:32
-
-
Save frontrangerider2004/3e5ed2a0b026cc9a488c30bf1559b60c to your computer and use it in GitHub Desktop.
Rename all files with tacos- in the filename to have burgers- in place of tacos-
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for f in $(ls); do mv ${f} ${f/tacos-/burgers}; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment