Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 241 Bytes

File metadata and controls

22 lines (13 loc) · 241 Bytes

Tenth Line

Description

link


Solution

  • See Code

Code

O(n)

# Read from the file file.txt and output the tenth line to stdout.
awk 'NR == 10' file.txt