tags:

views:

16

answers:

1

Kiddie pool question.

When I launch a new Terminal window, I starts me in 'Macintosh HD/Users/MyName'. How can I back out of my user directory back up to the top level?

+2  A: 

cd .. will back the directory up by one. If you want to reach a folder in the parent directory, you can do something like cd ../foldername. You can use the ".." trick as many times as you want to back up through multiple parent directories. For example, cd ../../Applications would take you to Macintosh HD/Applications

davidcelis
Big thanks! Macintosh HD/Applications is exactly where I was going.
John Leonard