3 lines
101 B
Bash
3 lines
101 B
Bash
|
# Read from the file file.txt and output the tenth line to stdout.
|
||
|
head -n 10 file.txt | tail -n +10
|