Created
December 4, 2010 05:57
-
-
Save ninehills/727957 to your computer and use it in GitHub Desktop.
linux批量重命名
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 i in *.jpeg;do mv "$i" "${i%.jpeg}.jpg" ;done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment