sed -n '99,p' test.txt
awk 'NR==99' test.txt awk 'FNR==99' test.txt
perl -lane 'if($.==99){print $_}' test.txt
linux打印指定的行的内容
原文:https://www.cnblogs.com/raisok/p/10955056.html