mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-31 23:08:09 -07:00
12 lines
157 B
Plaintext
12 lines
157 B
Plaintext
# simple regexp
|
|
$$$ echo test
|
|
>>> /^test$/
|
|
|
|
# negative regexp
|
|
$$$ echo test
|
|
>>> !/toast/
|
|
|
|
# regexp containing quoted /
|
|
$$$ echo 2015/1/1
|
|
>>> /2015\/1\/1/
|