实际问题:运维同事发来两组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一次就好。