Rhel7 grep在文件中查找指定的字符串,将其输出到指定文件

Rhel7 grep在文件中查找指定的字符串,将其输出到指定文件

[root@desktop0 findfiles]# cat /usr/share/dict/words |grep seismic

anaseismic

antiseismic

aseismic

……

[root@desktop0 findfiles]# cat /usr/share/dict/words |grep seismic >>/root/wordlist

[root@desktop0 findfiles]# cat /root/wordlist

anaseismic

antiseismic

aseismic

……

[root@desktop0 findfiles]#



      本文转自810105851 51CTO博客,原文链接:http://blog.51cto.com/4708948/1701913,如需转载请自行联系原作者


你可能感兴趣的:(Rhel7 grep在文件中查找指定的字符串,将其输出到指定文件)