Google News
logo
Less - Interview Questions
Explain how you can invoke the compiler from the command line?
You can invoke the compiler from the command line in LESS as
 
$ lessc styles.less
 
This will output the compiled CSS to stdout; you may then redirect it to a file of your choice
 
$ lessc styles.less > styles.css
Advertisement