如何截断由grep或ack返回的长匹配线

前端之家收集整理的这篇文章主要介绍了如何截断由grep或ack返回的长匹配线前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想运行ack或grep的html文件,通常有很长的行。我不想看到非常长的行包装重复。但我确实希望看到围绕与正则表达式匹配的字符串的长线的那部分。我如何得到这个使用unix工具的任何组合?
您可以使用grep选项-o,可能结合将模式更改为“。{0,10}< original pattern>。{0,10}”,以便查看其周围的一些上下文:
       -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.
原文链接:https://www.f2er.com/bash/391216.html

猜你在找的Bash相关文章