///
cd comedy/
touch shrek.txt
cp * satire
cp: omitting directory ‘satire’
cp: omitting directory ‘slapstick’
cd satire/
ls
fight-club.txt shrek.txt the-office.txt
cd…/
bash: cd…/: No such file or directory
cd../
bash: cd../: No such file or directory
cd action/
bash: cd: action/: No such file or directory
$ cd…/…/action/
bash: cd…/…/action/: No such file or directory
///
I don’t know what I did wrong, but I am supposed to navigate two directories up from comedy/ and then I will get into the action/ directory.
1 Like
Sorry, I figured it out. I was supposed to write this, cd …/…/action/
I did not have a space after the cd, which is very important, for those who might be having a similar issue.
2 Likes