Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Sass Basics (retired) Getting Started with Sass Installing and Using Sass

-bash: Desktop: command not found I cannot get the terminal to see my scss file. What word processor should I use?

I have tried text edit, Word, and can't get the terminal to see the test.scss file. I get an error code. I changed the directory to the Desktop, but no luck. I type Macs-MacBook:Desktop macuser$ test.scss and get the error code. Nothing on the board has helped.

Are you in the same folder as the file? Remember you can move to another directory using the "cd" command. Now, when you say "I can't get the terminal to see the test.scss file", do you mean it is not listed with something as the "-ls" command?

1 Answer

Fábio Tavares da Costa
Fábio Tavares da Costa
11,985 Points
$ pwd # will let you know where you are in the system
$ cd ~ # will put you back in your home/username dir
# the sass docs are really good. Quote:
# You can also tell Sass to watch the file and update the CSS every time the Sass file changes:

sass --watch input.scss:output.css

# If you have a directory with many Sass files, you can also tell Sass to watch the entire directory:

sass --watch app/sass:public/stylesheets

http://sass-lang.com/documentation/file.SASS_REFERENCE.html