For number 2 I can’t get passed when they ask us if we put down the pwd. Can anyone please help me out?
$ cd …
$ cd … pwd
is what i put
For number 2 I can’t get passed when they ask us if we put down the pwd. Can anyone please help me out?
$ cd …
$ cd … pwd
is what i put
A link to the lesson would be helpful if you could provide that, please. (So people can read the instructions). Or a description of the question.
https://www.codecademy.com/journeys/full-stack-engineer/paths/fscj-22-web-development-foundations/tracks/fscj-22-deploying-websites/modules/wdcp-22-command-line-for-building-websites-882bca36-730b-44af-9f3f-fff9c60073e7/lessons/navigation/exercises/learn-the-command-line-cd-i is the link. Thank you very much
cd
& pwd
go on separate lines as they’re separate commands.
ex:
cd ..
pwd
/home/ccuser/workspace/blog/2015
thank you but since i already tried that, I need to ask again what happens after that and what should i do to fix it?
Can you screenshot the code you wrote and paste it here?
Sometimes you have to reset the workspace and try again. Go under the gear icon and select “restore default workspace”.
It should look something like:
pwd
/home/ccuser/workspace/blog
$ cd 2015
$ ls
feb jan motherboard.txt
$ cd ..
$ pwd
/home/ccuser/workspace/blog
$ ls #not necessary but you can use this to *list* the files and directories in the current dir.
2014 2015 hardware.txt
$ cd 2015
$ cd jan
$ cd memory
$ pwd
/home/ccuser/workspace/blog/2015/jan/memory
$
you have to select the “check work” button. (and hit return at the end of that line to view the current working directory).
Did you clear the terminal and then try the commands that I wrote in my previous post?
This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.