1 Creating commands
Mkdir-p Directory Name
Where-p means recursive creation, English for Make directories
[Email protected]:~$ mkdir Test
The above command creates a folder under the current path test
[Email protected]:~$ mkdir-p mm/x
The above code first creates the folder mm, and then creates the folder x in mm, at which point, using-p means to create the folder recursively
2 Switch Directory command
CD [catalogue]
English meaning Change Directory
Simplify operations
CD + Enter the current user's home directory
CD ~ also indicates access to the current user's home directory
CD-Go to the previous directory
Cd.. Go to the top level directory
Cd. Go to current directory
When you are not familiar with the command, use the table key to complete the command, if the command is not only one, then press the table keyboard will list all the commands involved.
Linux Directory processing commands