Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save uran1980/5f1a678d155fdd5f4a9b5f2fe13c263d to your computer and use it in GitHub Desktop.
Save uran1980/5f1a678d155fdd5f4a9b5f2fe13c263d to your computer and use it in GitHub Desktop.
Convert .sass syntax to .scss in terminal
# http://blog.teamtreehouse.com/the-absolute-beginners-guide-to-sass
# Enter the folder you want to convert in your terminal and type in:
# ---------------------------------------------------------------------
# sudo apt get install ruby-sass
# ---------------------------------------------------------------------
sass-convert --from sass --to scss -R .
# where -R means recursively and . means the current directory.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment