Shell 命令
对于Shell命令我们要区分bash 内置(bash built in )和GNU 开源软件包以及三方软件包。对于所有命令我们都可以尝试whereis
确定可执行文件、源码、和手册路径。
#man whereis
whereis - locate the binary, source, and manual page files for a com-
mand
# whereis whereis
whereis: /usr/bin/whereis /usr/share/man/man1/whereis.1.gz
同时可以可以通过which
确定当前环境变量下的命令位置
#man which
which - locate a command
# which which
/usr/bin/which
对于命令我们可以尝试通过 man
啃手册,当然也可也通过 -h
或者--help
快速确定命令选项。不习惯在console 阅读文档,需要做一些笔记的命令。可以尝试其pdf文档。
还是区分bash 内置命令(bahs built in)和GNU软件包,以及三方软件包。
- bash 内置命令(bahs built in)
- GNU软件包
- 其他软件包只有谷歌了。
当然也有其他shell命令的归档文档http://tldp.org/LDP/abs/html/part4.html
http://linuxtools-rst.readthedocs.io/zh_CN/latest/base/01_use_man.html
man bash
- QUOTING
特殊转移字符;
- Special Prameters
描述$*、$@、$#……等特殊变量;
- Parameter Variables
描述${#a}变量操作的表达式;
Terminal 快捷键
快捷键 | 描述 |
---|---|
Ctrl+d | 在空白处执行将结束当前会话(同 exit 命令功能) |
Ctrl+p | 显示上一条历史命令(同 up arrow 功能) |
Ctrl+n | 显示下一条历史命令(同 down arrow 功能) |
Ctrl+r | 反向搜索历史命令 |
Ctrl+o | 回车(同 enter 键功能) |
Ctrl+j | 回车(同 enter 键功能) |
Ctrl+m | 回车(同 enter 键功能) |
Ctrl+a | 光标移动到行的开头 |
Ctrl+e | 光标移动到行的结尾 |
Ctrl+b | 光标向后移动一个位置(backward) |
Ctrl+f | 光标向前移动一个位置(forward) |
Ctrl+Left-Arrow | 光标移动到上一个单词的词首 |
Ctrl+Right-Arrow | 光标移动到下一个单词的词尾 |
Ctrl+t | 将光标位置的字符和前一个字符进行位置交换 |
Ctrl+u | 剪切从行的开头到光标前一个位置的所有字符 |
Ctrl+k | 剪切从光标位置到行末的所有字符 |
Ctrl+y | 粘贴 ctrl+u 或者 ctrl+k 剪切的内容 |
Ctrl+h | 删除光标位置的前一个字符(同 backspace 键功能) |
Ctrl+* | 删除光标位置的前一个字符(同 ctrl+h 组合键功能) |
Ctrl+d | 删除光标位置的一个字符(同 delete 键功能) |
Ctrl+w | 删除光标位置的前一个单词(同 alt+backspace 组合键功能) |
Ctrl+& | 恢复 ctrl+h 或者 ctrl+d 或者 ctrl+w 删除的内容 |
Ctrl+l | 清除当前屏幕内容(同 clear 命令功能) |
Ctrl+s | 暂停屏幕输出,Ctrl+q恢复屏幕输出。 |
ctrl+q 相对ctrl+s 恢复暂停的屏幕输出。