3.2.把标准错误和标准输出打印至屏幕,并保存至ztj.txt文件
命令:
ls -l de.txt 2>&1 | tee ztj.txt
[root@rhel77 ~]# ls -l de.txt 2>&1 | tee ztj.txt
ls: cannot access de.txt: No such file or directory
[root@rhel77 ~]# cat ztj.txt
ls: cannot access de.txt: No such file or directory
[root@rhel77 ~]#
3.3.把标准输入同时保存至ztj.txt和ztj1.txt文件
命令:
tee ztj.txt ztj1.txt
输入Ctrl + C退出
[root@rhel77 ~]# tee ztj.txt ztj1.txt
boc test
boc test
^C
[root@rhel77 ~]# cat ztj.txt
boc test
[root@rhel77 ~]# cat ztj1.txt
boc test
[root@rhel77 ~]#
3.4.把标准输入同时追加至ztj.txt和ztj1.txt文件
命令:
tee -a ztj.txt ztj1.txt
输入Ctrl + C退出
[root@rhel77 ~]# tee -a ztj.txt ztj1.txt
second input
second input
^C
[root@rhel77 ~]# cat ztj.txt
boc test
second input
[root@rhel77 ~]# cat ztj1.txt
boc test
second input
————————————————
版权声明:本文为CSDN博主「小黑要上天」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/z19861216/article/details/131800145