sh 195.第十行.bash

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 195.第十行.bash相关的知识,希望对你有一定的参考价值。

# Solution 1
cnt=0
while read line && [ $cnt -le 10 ]; do
  let 'cnt = cnt + 1'
  if [ $cnt -eq 10 ]; then
    echo $line
    exit 0
  fi
done < file.txt

# Solution 2
awk 'FNR == 10 {print }'  file.txt
# OR
awk 'NR == 10' file.txt

# Solution 3
sed -n 10p file.txt

# Solution 4
tail -n+10 file.txt|head -1

以上是关于sh 195.第十行.bash的主要内容,如果未能解决你的问题,请参考以下文章

sh 195.第十行.bash

sh 195.第十行.bash

sh 195.第十行.bash

sh 195.第十行.bash

195-第十行

LeetCode 195. 第十行(shell,awk或sed)