Don't understand next steps

I can’t seem to get past this following instruction:

Let’s move on to copying, moving, and removing files and directories from the command line.

Navigate to the drama/biopic/ directory.

cd …/drama/biopic/
List all files and directories in the working directory.

I had done the following:

ls action comedy drama genres.txt cd drama/
cd biopic/ ls
cleopatra.txt frida.txt lincoln.txt notorious.txt ray.txt
$ ls -alt
total 20
drwxr-xr-x 2 ccuser ccuser 99 Jul 8 2015 .
-rw-r–r-- 1 ccuser ccuser 13 Jul 8 2015 cleopatra.txt
-rw-r–r-- 1 ccuser ccuser 1431 Jul 8 2015 frida.txt
-rw-r–r-- 1 ccuser ccuser 2309 Jul 8 2015 lincoln.txt
-rw-r–r-- 1 ccuser ccuser 13 Jul 8 2015 notorious.txt
-rw-r–r-- 1 ccuser ccuser 7 Jul 8 2015 ray.txt
drwxr-xr-x 4 ccuser ccuser 38 Jul 8 2015 …

What am I doing wrong?

you really have to run this command: cd …/drama/biopic/ from the right directory in one go, you can’t break it down into steps, if you break it down into steps, you won’t get a pass

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