mkdir FOLDER_NAME_HERE makes a new folder inside the current folder (you are in root/ folder now)
Run mkdir my_folder to create a folder.
cd FOLDER_NAME_HERE lets us change folders (its like double clicking a folder in file explorer)
Run cd my_folder to enter into the folder.
touch FILE_NAME_HERE lets us make a new file
Run touch file.txt to create a file.
rm FILE_NAME_HERE lets us remove a file (The file should be in the same folder)
Run rm file.txt to delete the file.
mkdir makes a new folder inside the current folder (you are in C:\ folder now)
Run mkdir my_folder to create a folder.
cd let us change folders (its like double clicking a folder in file explorer)
Run cd my_folder to enter into the folder.
echo. > FILE_NAME_HERE lets us make a new file
Run echo. > file.txt to create a file.
del FILE_NAME_HERE lets us remove a file (The file should be in the same folder)
Run del file.txt to delete the file.
Root