[linux专题]cat

Posted years4nancy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[linux专题]cat相关的知识,希望对你有一定的参考价值。

实际问题:运维同事发来两组txt主机名,需要一次性部署。

利用cat指令:

cat host1.txt host2.txt > host.txt

Function:concatenate files | standard input => standard output

skills: Ctrl + S 停止滚屏  Ctrl + Q 恢复滚屏 Ctrl + C 中断

网上常用方式:

    cat x.log | grep "key word" | more

用管道的方式,more分页输出

然而,cat x.log | grep "key word" 从效率上说没有 grep "key word"  x.log 这总方式效率高。

因为 管道对文件做两次遍历,grep一次就好。

 

以上是关于[linux专题]cat的主要内容,如果未能解决你的问题,请参考以下文章

Linux时间子系统专题汇总

第四季-专题6-Linux内核子系统

高级程序员的进阶之路:Linux内核

第四季-专题8-Linux系统调用

Linux内核学习方法专题分享-2.资料推荐

Linux进程管理专题