From 26d4bcfc23c13edd918e3d33e2d5e6d7c2807945 Mon Sep 17 00:00:00 2001 From: "ithink.chan" Date: Tue, 7 Jan 2020 11:15:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=20=E5=B0=86=20Shell=20?= =?UTF-8?q?=E5=85=A8=E9=83=A8=E5=86=85=E5=AE=B9=E8=BE=93=E5=87=BA=E5=88=B0?= =?UTF-8?q?=E6=96=87=E4=BB=B6.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ithink.chan --- Software/Applications/Tee/Tee_命令的使用.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Software/Applications/Tee/Tee_命令的使用.md b/Software/Applications/Tee/Tee_命令的使用.md index 456488c..469570c 100644 --- a/Software/Applications/Tee/Tee_命令的使用.md +++ b/Software/Applications/Tee/Tee_命令的使用.md @@ -54,3 +54,19 @@ www.pdf WWW.pdf WWW.pef ``` + +## 将 Shell 全部内容输出到文件 + +```sh + 2>&1 | tee +``` + +* 0:标准输入 +* 1:标准输出 +* 2:标准错误信息输出 +* \<:重定向输入 +* \>:将内容全局覆盖式的加入文件,相当于删除该文件并重新建立该文件,再写入的效果 +* \>!:如果存在则覆盖 +* \>&:执行时屏幕上所产生的任何信息写入指定的文件中 +* \>>:追加到文件中 +* \>>&:屏幕上的信息追加到文件中