How do we navigate through files in the terminal
pwd - shows us the present working directory
cd - means change directory .. means go backwards and /desktop to go to a sub directory called Desktop
ls - list everything in the directory
everything in Linux Bash is case sensitive so keep that in mind
~ means root folder
mkdir - makes directories for us
rmdir is to remove directories
ls -la (Shows us all the hidden files as well)
Tab to autocomplete stuff or give you recommendations and stuff
after a command and specifying a file name means the file output would written in that file
cp test.txt Downloads/ means we copy the test.txt file to the Downloads folder
rm - to remove files not directories
mv - Is to move the file from the current directory to the director listed afterwards