LeetCode:195. 第十行

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

你可能感兴趣的:(LeetCode)