Skip to content

Instantly share code, notes, and snippets.

@mrmrs
Last active December 15, 2015 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mrmrs/5334227 to your computer and use it in GitHub Desktop.
Save mrmrs/5334227 to your computer and use it in GitHub Desktop.
Rename all css files to scss. Could be used to change extension for any two file types.
for file in *.css
do
mv ${file} ${file%.css}.scss
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment