I am having trouble with this lesson: https://www.codecademy.com/courses/learn-the-command-line/lessons/navigation/exercises/learn-the-command-line-mkdir This is not a matter of figuring anything out as I know what to type but for some reason, the exercise on question 1 will not accept the answer(cd 2014/dec) and there are very few ways to reword the answer. If you could kindly tell me exactly how to word the command I would very much appreciate it.
Do you receive a “no such file or directory” message? If so, you’re in the wrong directory.
That command works but you have to make sure that you’re in the correct dir.
You need to be in workspace/blog
Ex (after typing cd
and hitting Return):
$ cd
$ ls
npm-shrinkwrap.json package.json workspace
$ cd 2014/dec
bash: cd: 2014/dec: No such file or directory
$ cd workspace
$ ls
blog
$ cd 2014/dec
bash: cd: 2014/dec: No such file or directory
$ cd blog
$ cd 2014/dec
1 Like
This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.