Skip to content

Instantly share code, notes, and snippets.

@romach
Created April 4, 2017 17:01
Show Gist options
  • Save romach/eb49770778c8f8ced316d844b703355d to your computer and use it in GitHub Desktop.
Save romach/eb49770778c8f8ced316d844b703355d to your computer and use it in GitHub Desktop.
Change file extensions
# remove all .png extension from all files
for i in $(ls *.png); do mv $i ${i%.png}; done
# remove extensiosns from all files
for i in $(ls *.*); do mv $i ${i%.*}; done
# change extension from .html to .htm
for i in $(ls *.html); do mv $i ${i%.html}.htm; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment