Skip to content

Instantly share code, notes, and snippets.

@arturoherrero
Created March 26, 2015 11:49
Show Gist options
  • Save arturoherrero/136ae94b24482676edc7 to your computer and use it in GitHub Desktop.
Save arturoherrero/136ae94b24482676edc7 to your computer and use it in GitHub Desktop.
Rename .css.sass to .sass files
for f in *.css.sass; do
mv "$f" "$(basename "$f" .css.sass).sass"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment