0

I am unable to trigger commands in my command line for example,

:~$ cd downloads 
Bash: cd: downloads: Bo such file or directory 
Rinzwind
  • 299,756

1 Answers1

0

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

lnee
  • 806