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 :)
type -a cd
report? Is it an alias or something? – muru Oct 22 '20 at 02:51~/.bashrc
doesn't have that cd alias in it as well. You can use your favorite editor likegedit
and run from a command linegedit ~/.bashrc
and look for if it is setting the alias. Do not delete any lines other than just thealias cd='cd -P tunnel'
line if that exists or a line similar to that one. – Terrance Oct 22 '20 at 05:03