[ LeetCode试题 ] 195 Tenth Line
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ LeetCode试题 ] 195 Tenth Line相关的知识,希望对你有一定的参考价值。
Solution1:
cat file.txt | awk ‘{if(NR==10)print $0}‘
Solution2:
cat file.txt | sed -n ‘10p‘
以上是关于[ LeetCode试题 ] 195 Tenth Line的主要内容,如果未能解决你的问题,请参考以下文章