第十行

sed

个人比较习惯用 sed

sed -n 10p file.txt

tail

tail -n +10 file.txt | head -1

awk

awk 'NR==10' file.txt