Leetcode/bash/195.sh
2024-06-21 01:36:40 +01:00

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