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