Skip to content

Instantly share code, notes, and snippets.

@jangeador
Created June 23, 2020 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jangeador/00cc2aaaf89457ce8222f901b4054740 to your computer and use it in GitHub Desktop.
Save jangeador/00cc2aaaf89457ce8222f901b4054740 to your computer and use it in GitHub Desktop.
Add extension MP4 to files without extension
#!/bin/sh
# add extension to all files in this path
find . -type f ! -name "*.*" -exec mv {} {}.mp4 \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment