标签:class image int 试题 技术 code blog 分享 alt
Solution1:
cat file.txt | awk ‘{if(NR==10)print $0}‘
Solution2:
cat file.txt | sed -n ‘10p‘
[ LeetCode试题 ] 195 Tenth Line
原文地址:http://www.cnblogs.com/linyfeng/p/6919621.html