How would you print just the 10th line of a file
2016-10-07 10:47 三犬风 阅读(175) 评论(0) 编辑 收藏 举报awk -F:"\n" '{if(NR==10) {print}}' file.txt
Always go with the choice that scares you the most, because that's the one that is going to require the most from you!