TIPS: I have mentioned more than one tips for Linux, but it is helpful for new users like me.
1. Alias of the command line:
Sudo gedit ~ /. Bashrc
Use the alias short command = "command to replace" in the opened file"
For example, alias L = "LS-L"
Alias install = "sudo apt-Get install"
And so on.
2. Linux File Operation commands
Create a folder: mkdir folder path/file name (create a folder in the current directory if no path is specified)
Delete file: RM file name/directory name (the-r option must be used to delete the Directory)
Move file and modify file name: target file name of the MV source file name (if the path is the same, you can modify the name of the master file)
Copy file: the target file of the CP source file (copy and modify the file name)
Show file content: CAT and more
These are some simple file operation commands, and the list is also simple usage. The specific options of each command are familiar during use. Other commands about file attributes will be summarized later.
In fact, these commands are not back-to-back. If you use more commands, you will naturally know!