今天遇到一个小问题,要提取文件的行首和行尾指定的行数, 不想生成中间文件, 一时没有想出来怎么处理,后来想到一个组合命令实现。如下:
001、
[root@PC1 test2]# ls a.txt [root@PC1 test2]# cat a.txt ## 测试数据 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 [root@PC1 test2]# head -n 2 a.txt | cat - <(tail -n 3 a.txt ) ## 组合命令同时提取文件的前两行和最后的三行 01 02 03 04 15 16 17 18 19 20
标签:test2,结尾,PC1,cat,开头,linux,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/17214536.html