Skip to content

Instantly share code, notes, and snippets.

@oeon
Created April 8, 2012 21:41
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 oeon/2339950 to your computer and use it in GitHub Desktop.
Save oeon/2339950 to your computer and use it in GitHub Desktop.
bash, sed - change extension from markdown to md
for file in *; do mv $file $(echo $file | sed 's/markdown/md/g'); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment