Вы можете использовать опцию grep -o
, возможно, в сочетании с изменением шаблона на ".{0,10}<original pattern>.{0,10}"
, чтобы увидеть контекст вокруг него:
-o, --only-matching
Show only the part of a matching line that matches PATTERN.
.. или -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.