Naviagation: CD I

I am on #2 and cannot figure out the answer. Can any of you help me?

What lesson/course?
Please include a link to the lesson as well as what code you’ve tried so far.

Navigation CD I haha
This is what i put but had no luck in finding the answer

$ cd …
$ pwd
/home/ccuser/workspace
$ pwd

It asked me if i put pwd down beginning with the first pwd i put down. IT then asked again after the second pwd i put down.

THank you

screenshot?
Edit: never mind. I found the link to the course:

https://www.codecademy.com/courses/learn-the-command-line/lessons/navigation/exercises/learn-the-command-line-cd-i

you used three “…” when you’re supposed to use two. Two periods denotes moving up two directories to the parent of the current directory.

ie:

pwd
/home/ccuser/workspace/blog
$ cd 2015
$ pwd
/home/ccuser/workspace/blog/2015
$ cd ..
$ pwd
/home/ccuser/workspace/blog

Going forward, please refer to this guide when posting here:

It also might be worth your while to search online for a Unix commands cheatsheet.

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.