sassc

Compile Sass stylesheets to CSS from the command line

brewmacoslinux
Try with needOr install directly
Source

About

Wrapper around libsass that helps to create command-line apps

Commands

sassc

Examples

convert Sass file to CSS$ sassc input.scss output.css
minify CSS output from Sass$ sassc --style compressed input.scss output.css
compile Sass with source maps for debugging$ sassc --source-map input.scss output.css
watch Sass file and recompile on changes$ sassc --watch styles/ css/
pretty print expanded CSS from Sass$ sassc --style expanded input.scss output.css