I have folder in Downloads directory to which I need to navigate I'm doing "cd Downloads" and after "cd Folder1 " but terminal says "No such file or directory" how can I access that folder?
fd = open("file", O_CREAT);
# !/bin/bash # A convenience function, to save us some work update_server() { # Read the app id and the directory into a variable APP_ID=$1 DIR=$2 # Create the directory ( if it does not exist already ) if [ ! -d "$HOME/$DIR" ]; then mkdir -p "$HOME/$DIR" fi # Uh-oh, it looks like we still have no directory. Report an error. if [ ! -d "$HOME/$DIR" ]; then # Describe what went wrong echo "ERROR! Cannot create directory $HOME/$DIR!" # Exit with status code 1 ( which indicates an error ) exit 1 fi # Call SteamCMD with the app ID we provided and tell it to install ./bin/steamcmd.sh +login anonymous +force_install_dir "$HOME/$DIR" +app_update $APP_ID validate +quit } # Now the script actually runs update_server ( which we just declared above ) with the id of the application ( 4020 is Garry's Mod ) and the name of the directory we want the server to be hosted from: update_server 4020 "gmodserver" exit 0