文本文件,如何截取其中指定的几行啊。当然是用linux命令,不是自己搞个程序了
来源: 互联网 发布时间:2016-02-11
本文导语: 请各位大佬支招:) | 显示二至三行:sed '2,3p' file http://blog.chinaunix.net/u1/45170/showart_357544.html | 显示文件的第2到第6行 sed -n '2,6p' file 需要加-n参数. head -n 6 file|tail -n 4 awk ...
请各位大佬支招:)
|
显示二至三行:sed '2,3p' file
http://blog.chinaunix.net/u1/45170/showart_357544.html
http://blog.chinaunix.net/u1/45170/showart_357544.html
|
显示文件的第2到第6行
sed -n '2,6p' file
需要加-n参数.
head -n 6 file|tail -n 4
awk 也能达到要求
|
awk -F"n" '{if(NR>=2&&NR