Created
June 6, 2013 08:52
-
-
Save homleen/5720227 to your computer and use it in GitHub Desktop.
批量修改文件拓展名
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 *.gz; do | |
mv $file `basename $file .gz`.zip; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment