I made a shell script that I want wherever it is to go to a directory. For example if the shell is in Downloads I want it to go to Desktop create there a folder go to that folder and many other thing but CD command does not work.
#!/bin/bash
cd Desktop
It says so:
setup.sh: 2: cd: can't cd to Desktop
I there a way to use it, please help.