使用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. 建立管道使用 '|'
、