重定向2-shell进介
时间:2006-09-22 来源:wind1211
见解2
合并标准输出和标准输入:
通过使用 2>&1 来把所有的输出保存到一个文件
[root@shenlan root]# cat >> file2 2>&1 << lyx
> this is my home $HOME directory
> lyx
[root@shenlan root]# cat file2
THIS IS MY HOME /root
this is my home /root directory
[root@shenlan root]#
> this is my home $HOME directory
> lyx
[root@shenlan root]# cat file2
THIS IS MY HOME /root
this is my home /root directory
[root@shenlan root]#
相关阅读 更多 +