Skip to content

Instantly share code, notes, and snippets.

@azanebrain
Created December 5, 2015 14:59
Show Gist options
  • Save azanebrain/e34197af29d0fc947171 to your computer and use it in GitHub Desktop.
Save azanebrain/e34197af29d0fc947171 to your computer and use it in GitHub Desktop.
Bulk change the file extension of all files in a directory
for old in path/to/files/*.txt; do mv $old path/to/files/`basename $old .text`.md; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment