Skip to content

Commit ac30321

Browse files
committed
auto commmit
1 parent 4994aea commit ac30321

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/notes/Linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ $ grep -n 'the' regular_express.txt
10391039
18:google is the best tools for search keyword
10401040
```
10411041

1042-
示例:正则表达式 a{m,n} 用来匹配字符 a m\~n 次,这里需要将 { 和 } 进行转移,因为它们在 shell 是有特殊意义的。
1042+
示例:正则表达式 a{m,n} 用来匹配字符 a m\~n 次,这里需要将 { 和 } 进行转义,因为它们在 shell 是有特殊意义的。
10431043

10441044
```html
10451045
$ grep -n 'a\{2,5\}' regular_express.txt

notes/Linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ $ grep -n 'the' regular_express.txt
10391039
18:google is the best tools for search keyword
10401040
```
10411041

1042-
示例:正则表达式 a{m,n} 用来匹配字符 a m\~n 次,这里需要将 { 和 } 进行转移,因为它们在 shell 是有特殊意义的。
1042+
示例:正则表达式 a{m,n} 用来匹配字符 a m\~n 次,这里需要将 { 和 } 进行转义,因为它们在 shell 是有特殊意义的。
10431043

10441044
```html
10451045
$ grep -n 'a\{2,5\}' regular_express.txt

0 commit comments

Comments
 (0)