①cd [path](current directory) Command to go to [path].
②pwd(print working directory) A command to display the current directory.
③mkdir [new folder](make directory) Command to create a new folder.
④touch [new file] Command to create a new file.
⑤ls(list) A command to list files and folders in the current directory.
⑥rm [file] A command to delete an existing file.
⑦rm -r [folder] A command to delete an existing folder.
Recommended Posts