我想运行ack或grep的html文件,通常有很长的行。我不想看到非常长的行包装重复。但我确实希望看到围绕与正则表达式匹配的字符串的长线的那部分。我如何得到这个使用unix工具的任何组合?
您可以使用grep选项-o,可能结合将模式更改为“。{0,10}< original pattern>。{0,10}”,以便查看其周围的一些上下文:
原文链接:https://www.f2er.com/bash/391216.html-o,--only-matching Show only the part of a matching line that matches PATTERN.
..or -c:
-c,--count Suppress normal output; instead print a count of matching lines for each input file. With the -v,--invert-match option (see below),count non-matching lines.