Created
April 4, 2017 17:01
-
-
Save romach/eb49770778c8f8ced316d844b703355d to your computer and use it in GitHub Desktop.
Change file extensions
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
# 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