We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a20aff3 commit 63c6ebcCopy full SHA for 63c6ebc
Bash-shell/4. Filtering.md
@@ -0,0 +1,14 @@
1
+
2
+Sử dụng các ký tự đặc biệt trong các bộ lọc, tìm kiếm
3
4
5
+|Symbol |Result|
6
+|---------|--------|
7
+|.| Matches any character.|
8
+|#|Matches zero or more instances of the preceding character.|
9
+|+|Matches one or more instances of the preceding character.|
10
+|[] |Matches any of the characters within the brackets.||
11
+|`|`|**OR** operator; (www|ftp) matches either “www” or “ftp”.|
12
+|^|Matches the beginning of a line.|
13
+|$|Matches the end of a line.|
14
+|\ |Escapes the following character. Since `.` matches any character, to match a literal period you would need to use `\.`. |
0 commit comments