Created
September 11, 2015 16:55
-
-
Save jtadeulopes/2c862eaed8c7436619ec to your computer and use it in GitHub Desktop.
Remove CSS extension
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
#!/bin/sh | |
# chmod a+x remove_css_extension.sh | |
for file in $(find ./app/assets/stylesheets/ -name "*.css.sass") | |
do | |
git mv $file `echo $file | sed s/\.css//` | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bacana!