我有多行,我需要选择其中一个,我使用 grep 找到了所需的行,但现在我只想要结果中的第一行。我怎样才能使用,,,等来做到grep
这awk
一点sed
。
This is first line.
This is second line.
This is seventh line.
使用 grep 我得到了 o/p grep "This is s" file.txt
。
This is second line.
This is seventh line.
现在我需要第一行。我如何'\n'
用作字段分隔符。