Created
June 29, 2018 13:43
-
-
Save TerryMooreII/7bf362c47447789b7cdb09bd296d278a to your computer and use it in GitHub Desktop.
Rename Files in directory
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 file in *.js; do mv "$file" "${file/old-value/new-value}”; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment