Given a text file file.txt, print just the 10th line of the file.
file.txt
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.
GeeksforGeeks
Leetcodearrow-up-right
ProgramCreek
YouTube
Input:
Assume that file.txt has the following content:
Output:
Your script should output the tenth line, which is:
Line 10
Last updated 5 years ago
# Read from the file file.txt and output the tenth line to stdout. awk 'NR==10' file.txt