Skip to content

Instantly share code, notes, and snippets.

@ninehills
Created December 4, 2010 05:57
Show Gist options
  • Save ninehills/727957 to your computer and use it in GitHub Desktop.
Save ninehills/727957 to your computer and use it in GitHub Desktop.
linux批量重命名
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