Skip to content

Instantly share code, notes, and snippets.

@marcuswestin
Created September 16, 2014 21:06
Show Gist options
  • Save marcuswestin/f41cc0b6f68489fc49ca to your computer and use it in GitHub Desktop.
Save marcuswestin/f41cc0b6f68489fc49ca to your computer and use it in GitHub Desktop.
Change extension of all files
find . | grep .css | while read file; mv ${file/.css/.styl} $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment