Created
September 20, 2018 08:30
-
-
Save YKG/450500a82db4ce58134df7dad061cefe to your computer and use it in GitHub Desktop.
rename multiple file names
This file contains 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 i in *.bak; do mv $i ${i%.bak}; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment