Tenth Line
Given a text file file.txt
, print just the 10th line of the file.
Example:
Assume that file.txt
has the following content:
Your script should output the tenth line, which is:
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.
Solutions
💲 Bash
Last updated
Was this helpful?