继续 学习Linux

使用ctrl+r 后输入字母可以调用以前输入过的命令
例如:
$同时按下ctrl+r 后
界面显示(reverse-i-search)`':grep 就可以调用之前使用过的grep命令
\a Alert 警报会发出铃声 
\b Backspace.  退格
\e Escape.字符转换 
\f Form feed. 换页
\n Newline.  换行
\r Carriage return. 回车
\t Horizontal tab. 
\v Vertical tab. 
\\ Backslash.  转义
清屏命令 clear; 或者直接使用快捷键ctrl+l

Standard Input: Redirecting standard input. 重定向标准输入 使用‘<’
Standard Output: Redirecting standard output. 重定向标准输出使用‘>’或者追加输出 ‘>>’
Standard Error: Redirecting standard error. 重定向标准错误 ‘2>’$apropos shells 2> command.error
To redirect both standard output and standard error to the same file, use `&>' instead
Pipelines: Building pipelines. 建立管道使用 '|'


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章