sed -n '99,p' test.txt
awk 'NR==99' test.txt awk 'FNR==99' test.txt
perl -lane 'if($.==99){print $_}' test.txt