Skip to content

Instantly share code, notes, and snippets.

@us10096698
Created July 1, 2014 22:32
Show Gist options
  • Save us10096698/86671c11eaaf4050fddd to your computer and use it in GitHub Desktop.
Save us10096698/86671c11eaaf4050fddd to your computer and use it in GitHub Desktop.
A simple shellscript file to change the filetype of files which are in the current directory.
#!/usr/bin/sh
shopt -s extglob
for file in *.txt
do
mv ${file} ${file/%.*([^.])/.md}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment