0

I am trying to do cd test and get the error bash: cd: too many arguments. I saw other threads saying that doing cd "test" would work but I get the same error message.

Also when I try to do cat test it give me ../../10/wsl

Any help would be greatly appreciated !

Thank you :)

1 Answers1

0

too many arguments because: when you type cd /mnt/c/user/e xample there is gap between the letters. you have to either

  1. close it like this cd "/mnt/c/users/e xample" or
  2. cd /mnt/c/users/e\ amples

hope it would help.