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