Linux下怎么得到一个文件的100到200行
参考回答:
awk 'NR>=100&&NR<=200{print}' inputfile
head -200 inputfile|tail -100
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题