HTMLify
LeetCode - Tenth Line - Bash
Views: 9 | Author: abh
1 2 | # Read from the file file.txt and output the tenth line to stdout. tail -n +10 file.txt | head -n 1 |
1 2 | # Read from the file file.txt and output the tenth line to stdout. tail -n +10 file.txt | head -n 1 |