补充 将 Shell 全部内容输出到文件.

Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
ithink.chan 2020-01-07 11:15:44 +08:00
parent 380d0ef175
commit 26d4bcfc23
1 changed files with 16 additions and 0 deletions

View File

@ -54,3 +54,19 @@ www.pdf
WWW.pdf
WWW.pef
```
## 将 Shell 全部内容输出到文件
```sh
<cmd> <args> 2>&1 | tee <log file>
```
* 0标准输入
* 1标准输出
* 2标准错误信息输出
* \<:重定向输入
* \>:将内容全局覆盖式的加入文件,相当于删除该文件并重新建立该文件,再写入的效果
* \>!:如果存在则覆盖
* \>&:执行时屏幕上所产生的任何信息写入指定的文件中
* \>>:追加到文件中
* \>>&:屏幕上的信息追加到文件中