标签:
命令输出重定向的语法为:
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)
command < file
[root@hy ~]# wc -l output.txt 2 output.txt [root@hy ~]# wc -l < output.txt 2
[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
标签:
原文地址:http://www.cnblogs.com/hyit/p/5180785.html