Skip to content

Instantly share code, notes, and snippets.

View mrtnpro's full-sized avatar
🍦

Martin mrtnpro

🍦
View GitHub Profile
@mrtnpro
mrtnpro / all_scss_to_sass
Created January 3, 2016 19:37 — forked from ryanburnette/sass-to-scss.sh
Convert all .scss files in the current directory to .sass files.
#!/usr/bin/env bash
for file in *.scss
do
sass-convert $file `echo $file | sed s/.scss/.sass/g`;
done
rm *.scss