195. Tenth Line
給定一個文本文件 file.txt,打印該文件的第 10 行。
範例:
假設 file.txt 包含以下內容:
Line 1
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line 8
Line 9
Line 10
你的腳本應該輸出第十行,結果是:
你的腳本應該輸出第十行,結果是:
Line 10
# Read from the file file.txt and output the tenth line to stdout
sed -n '10p' file.txt
3.75MB, 20ms