Last active
December 15, 2015 22:39
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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