Skip to content

Instantly share code, notes, and snippets.

@jtadeulopes
Created September 11, 2015 16:55
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 jtadeulopes/2c862eaed8c7436619ec to your computer and use it in GitHub Desktop.
Save jtadeulopes/2c862eaed8c7436619ec to your computer and use it in GitHub Desktop.
Remove CSS extension
#!/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
@edercosta
Copy link

Bacana!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment