Navigate to the comedy/ how do i do that?

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are asking about.>

<Below this line, describe in what way does your code behave incorrectly? Include ALL error messages.>

<Below this line, add a screenshot of your whole web browser so that we can see what you see.>

1 Like

please give a link to the exercise you are on.

on manipulation 3.ls -l

i’m stuck on this also…HELP!!!

Hi, @netslayer29565 and @netninja81409 you need to be more specific on your question, so that you can actually get helpped. What exactly doesn’t work ?

If it’s only to navigate to the comedy folder : you need the command cd, but it will change according to where you are on the path. Check the configuration of the paths here.

Some examples (check in which folder you are with pwd) :

# FIRST EXAMPLE : you are in the movies folder
$ pwd
/home/ccuser/workspace/movies   # movies folder

# go just one step down to reach for the comedy folder
$ cd comedy/    # change folder
$ pwd   # check if you've changed to comedy folder
/home/ccuser/workspace/movies/comedy  # ok

# SECOND EXAMPLE:  now let's say you are in the drama repository
$ pwd
/home/ccuser/workspace/movies/drama
$ cd ../  # go up (back to movies folder)
$ pwd
/home/ccuser/workspace/movies  # ok
$ cd comedy/ # and down to comedy : 
$ pwd
/home/ccuser/workspace/movies/comedy

# you could have done all that in one single command : 
$ pwd
/home/ccuser/workspace/movies/drama
$ cd ../comedy 
$ pwd
/home/ccuser/workspace/movies/comedy # ok

The …/ means that you go up (again, check the configuration of the paths).
Hope this will help.

1 Like

Hi I too am stuck on this exercise, it is asking you to navigate to comedy/ using ls.

Thank You

i already solved this problem. All i had to do was put:
cd comedy/

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