System Grab Bag

View all TLDR pages from common (or from all pages)

sass

Converts SCSS or Sass files to CSS. More information: https://sass-lang.com/documentation/cli/dart-sass.
  • Convert a SCSS or Sass file to CSS and print out the result:
    sass {{inputfile.scss|inputfile.sass}}
  • Convert a SCSS or Sass file to CSS and save the result to a file:
    sass {{inputfile.scss|inputfile.sass}} {{outputfile.css}}
  • Watch a SCSS or Sass file for changes and output or update the CSS file with same filename:
    sass --watch {{inputfile.scss|inputfile.sass}}
  • Watch a SCSS or Sass file for changes and output or update the CSS file with the given filename:
    sass --watch {{inputfile.scss|inputfile.sass}}:{{outputfile.css}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.