Record some of the terminal's use of commands, with automatic completion of the configuration, mainly afraid of forgetting later.
1. Terminal Auto-complete configuration
Open Terminal, enter:
Nano. Inputrc
Write in the file:
Set Completion-ignore-case on
Set show-all-if-ambiguous on
Tab:menu-complete
CTRL + O, enter, restart the terminal, auto-complete Press the TAP key on OK.
2. Common commands
PWD Current Working directory
CD (without parameters) into root
CD (folder) access to folders
Cd.. Parent Directory
cd ~ Back to Root
CD-Returns the last visited directory
RM File name Delete
Cat file name (|less) to view files under Terminal
LS lists all files in the directory
CP file name destination directory copy files to target directory
~ stands for root such as: ~/document/cpp2/
Mkdiv new Folder
g++ source file name compile source files, generate a.out
./file name run for example:./a.out < input file name > output file name
Control+d Interrupt a.out operation
Nano scripting language Ctrl+o storage
Nano .... SH Open
Bash .... SH Run script
echo "... $i ..." Output statement
TAR-ZXF abc.tar.gz tar file extract
SSH [email protected] Remotely connect 222 servers to the root account
Unrar x abc.rar rar file decompression, need to install RAR tool
Transferred from: http://blog.csdn.net/u013346305/article/details/52105316
Auto-complete function of Mac Terminal