码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2016-02-03 23:33:41      阅读:406      评论:0      收藏:0      [点我收藏+]

标签:

输出重定向

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

command > file 或 command >> file

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

技术分享
[root@hy ~]# who
root     tty1         2015-09-03 16:21
root     pts/3        2015-09-03 19:09 (192.168.11.1)
[root@hy ~]# who > output.txt
[root@hy ~]# 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 
技术分享
[root@hy ~]# wc -l output.txt
2 output.txt
[root@hy ~]# wc -l < output.txt
2
View Code
技术分享
[root@hy ~]# grep tty output.txt
root     tty1         2015-09-03 16:21
[root@hy ~]# grep tty < output.txt
root     tty1         2015-09-03 16:21
View Code

 

 

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

标签:

原文地址:http://www.cnblogs.com/hyit/p/5180785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!