From b6227d7635b4a3956e5824ca89b31dc70c20d566 Mon Sep 17 00:00:00 2001 From: lutixiaya <48750425+lutixiaya@users.noreply.github.com> Date: Wed, 3 Aug 2022 18:26:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9grep=E5=91=BD=E4=BB=A4?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E5=81=8F=E7=A7=BB=E9=94=99=E5=88=AB=E5=AD=97?= =?UTF-8?q?=20(#394)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- command/grep.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/grep.md b/command/grep.md index f16b017da3..2fd54ef2c8 100644 --- a/command/grep.md +++ b/command/grep.md @@ -141,7 +141,7 @@ grep "text" -n file_1 file_2 ```shell echo gun is not unix | grep -b -o "not" 7:not -#一行中字符串的字符便宜是从该行的第一个字符开始计算,起始值为0。选项 **-b -o** 一般总是配合使用。 +#一行中字符串的字符偏移是从该行的第一个字符开始计算,起始值为0。选项 **-b -o** 一般总是配合使用。 ``` 搜索多个文件并查找匹配文本在哪些文件中: