📜  shell 获取给定行 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:35.400000             🧑  作者: Mango

代码示例1
# Get line 3 of the output of `seq 10`
seq 10 | awk 'NR==3'