I want to open a folder that has all my resumes in it, how can I do that from the terminal?

link|improve this question

48% accept rate
feedback

2 Answers

up vote 10 down vote accepted

navigate to the dir and type

open .
link|improve this answer
"open path to file" will work as well. – KeithB May 26 '11 at 22:23
feedback

You can use:

cd dirname

to change the working directory. For example:

cd resumes

will change to the "resumes" folder. You can then manipulate it with other commands (ls, mv, cp , rm, and many others).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.