标签:
Display certain line or lines from a text file, such as :
Display the
1000th line from file message.log
or
Display the lines between 1000 and 1020 from file message.log
sed -n ‘1000,1020p‘ message.log
sed -n ‘1000,1020p; 1021q‘ message.log #break after read out 1020th line.
awk ‘{if ((NR >= 1000) && (NR <= 1020)) print $0}‘ message.log
cat -n message.log | grep -A 20 ‘^ *1000‘
nl message.log | grep -A 20 ‘^ *1000‘
tail -n +1000 message.log | head 20
head -n 1000 message.log | tail +20
版权声明:本文为博主原创文章,未经博主允许不得转载。
Display certain line(s) from a text file in Linux.
标签:
原文地址:http://blog.csdn.net/stpallas/article/details/46739881