shell之路第四篇输入输出重定向

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell之路第四篇输入输出重定向相关的知识,希望对你有一定的参考价值。

输出重定向

命令输出重定向的语法为:

command > file 或 command >> file

 这样,输出到显示器的内容就可以被重定向到文件。果不希望文件内容被覆盖,可以使用 >> 追加到文件末尾

技术分享
[[email protected] ~]# who
root     tty1         2015-09-03 16:21
root     pts/3        2015-09-03 19:09 (192.168.11.1)
[[email protected] ~]# who > output.txt
[[email protected] ~]# cat output.txt
root     tty1         2015-09-03 16:21
root     pts/3        2015-09-03 19:09 (192.168.11.1)
View Code

输入重定向(<可省略)

command < file 
技术分享
[[email protected] ~]# wc -l output.txt
2 output.txt
[[email protected] ~]# wc -l < output.txt
2
View Code
技术分享
[[email protected] ~]# grep tty output.txt
root     tty1         2015-09-03 16:21
[[email protected] ~]# grep tty < output.txt
root     tty1         2015-09-03 16:21
View Code

 

 

以上是关于shell之路第四篇输入输出重定向的主要内容,如果未能解决你的问题,请参考以下文章

Linux Shell编程中的特殊符号

关于shell输入 输出重定向

shell 12输入输出重定向

shell重定向

Shell 输入/输出重定向

shell 输入输出重定向