我正在使用grep提取与正则表达式匹配的行。如何只获得比赛而不是整个比赛?
Answers:
您可以提供grep -o选项。像这样:
-o
grep -o pattern file
(提示:为此我使用的助记符是:o除匹配项外,省略所有内容)