Skip to content

Instantly share code, notes, and snippets.

@nandomoreirame
Last active May 4, 2017 08:19
Show Gist options
  • Save nandomoreirame/3707806ebf524f56e63476b7256ce42e to your computer and use it in GitHub Desktop.
Save nandomoreirame/3707806ebf524f56e63476b7256ce42e to your computer and use it in GitHub Desktop.
Convert all files scss to .sass extension
for file in path-to-scss/**/*.scss; do sass-convert $file ${file%scss}sass && rm $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment