I am unable to trigger commands in my command line for example,
:~$ cd downloads
Bash: cd: downloads: Bo such file or directory
I am unable to trigger commands in my command line for example,
:~$ cd downloads
Bash: cd: downloads: Bo such file or directory
Unlike in windows, paths are case-sensitive so doing cd ~/downloads
does not work but cd ~/Downloads
does.
There are some other differences like being able to use !@#$%^&*+=-*
Note ~
is the home directory
cd downloads
fail with "No such file or directory"? – steeldriver Jul 24 '22 at 19:54