Skip to content

Instantly share code, notes, and snippets.

@manashmandal
Created August 22, 2019 09:35
Show Gist options
  • Save manashmandal/635ad5315b1320e5ba1795485fd6ed62 to your computer and use it in GitHub Desktop.
Save manashmandal/635ad5315b1320e5ba1795485fd6ed62 to your computer and use it in GitHub Desktop.
Bash hacks
# Change extension of files
for f in $(ls); do mv $f $(echo $f | cut -d "." -f 1).jpeg ; done
@manashmandal
Copy link
Author

for f in $(ls | grep .jpe$); do mv $f $(echo $f | cut -d "." -f 1).jpeg ; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment