Skip to content

Instantly share code, notes, and snippets.

@homleen
Created June 6, 2013 08:52
Show Gist options
  • Save homleen/5720227 to your computer and use it in GitHub Desktop.
Save homleen/5720227 to your computer and use it in GitHub Desktop.
批量修改文件拓展名
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