Problem
Given a text file file.txt
, print just the 10th line of the file.
Example:
Assume that file.txt
has the following content:
1 |
|
Your script should output the tenth line, which is:
1 |
|
Note:
- If the file contains less than 10 lines, what should you output?
- There’s at least three different solutions. Try to explore all possibilities.
Explanation
- We can use
sed
to solve this problem.-n
means prints all lines.p
limit which line to print.
Solution
1 |
|