美文网首页
195. Tenth Line

195. Tenth Line

作者: SilentDawn | 来源:发表于2018-07-11 13:57 被阅读0次

Problem

Given a text file file.txt, print just the 10th line of the file.

Example

Assume that file.txt has the following content:

Line 1
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line 8
Line 9
Line 10

Your script should output the tenth line, which is:

Line 10

Note:

  1. If the file contains less than 10 lines, what should you output?
  2. There's at least three different solutions. Try to explore all possibilities.

Code

sed -n '10p' file.txt

Result

195. Tenth Line.png

相关文章

  • 195. Tenth Line

    195. Tenth Line How would you print just the 10th line of...

  • 195. Tenth Line

    Problem Given a text file file.txt, print just the 10th l...

  • Tenth Line

    ProblemHow would you print just the 10th line of a file?F...

  • shell: Tenth Line

    Question: How would you print just the 10th line of a fil...

  • 179/365 十年

    It has been tenth year so far. Tenth year already? Seems ...

  • Tenth

    感觉你总是在躲着我。

  • Tenth

    今天我对一个小男孩有了新的认识。 他是爷爷奶奶带大的,现在要升初中了,成绩中下水平,不善言辞。目前...

  • 德瑞自驾游~the tenth days

    The president's trip. the tenth days,Obama in Heidelberg ...

  • Delicious Lunch

    It was the tenth time that my daughter had been given the...

  • 33、level2-unit2-part1 letters&am

    zero point one equals one/tenth. 0.1=...

网友评论

      本文标题:195. Tenth Line

      本文链接:https://www.haomeiwen.com/subject/hndhpftx.html