使用:
grep -A1 -B1 "test_pattern" file
将在文件中匹配的模式之前和之后产生一行。有没有一种方法来显示不是行,但指定数量的字符?
我的文件中的行非常大,所以我不打印整行,而是只在上下文中观察匹配的兴趣。任何建议如何做到这一点?
3个字符之前和4个字符之后
原文链接:https://www.f2er.com/bash/391766.html$> echo "some123_string_and_another" | grep -o -P '.{0,3}string.{0,4}' 23_string_and