2014-04-29 61 views

回答

2

容易使用tail命令:

tail -n+3 
2

你可以使用awk

awk 'NR>2' file 
2

爲了完成三重,

sed '1,2d' file 
相關問題