Skip to content

Commit 63c6ebc

Browse files
authored
Create 4. Filtering.md
1 parent a20aff3 commit 63c6ebc

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Bash-shell/4. Filtering.md

+14
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)