Skip to content

Instantly share code, notes, and snippets.

@nathankleyn
Created April 27, 2011 12:25
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 nathankleyn/944161 to your computer and use it in GitHub Desktop.
Save nathankleyn/944161 to your computer and use it in GitHub Desktop.
Rename CSS extension files to SCSS
#!/bin/sh
for file in **/pepsi.css ; do git mv $file `echo $file | sed 's/\(.*\.\)css/\1scss/'` ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment