grep:regex_usage
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
grep:regex_usage [2020/08/22 11:32] – created 192.168.1.1 | grep:regex_usage [2020/08/22 11:51] (current) – 192.168.1.1 | ||
---|---|---|---|
Line 7: | Line 7: | ||
---- | ---- | ||
+ | Assuming a file exists with the following contents: | ||
+ | |||
+ | < | ||
+ | boot | ||
+ | book | ||
+ | booze | ||
+ | machine | ||
+ | boots | ||
+ | bungie | ||
+ | bark | ||
+ | aardvark | ||
+ | broken$tuff | ||
+ | robots | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Basic Regex Search ===== | ||
+ | |||
+ | Search the file for lines ending with the letter e. | ||
+ | |||
+ | <code bash> | ||
+ | grep " | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | booze | ||
+ | machine | ||
+ | bungie | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Extended Regex Search ===== | ||
+ | |||
+ | <code bash> | ||
+ | grep -E " | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | boot | ||
+ | boots | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | The regexp command ? will match 1 or 0 occurrences of the previous character. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Combine Multiple Searches ===== | ||
+ | |||
+ | <code bash> | ||
+ | grep -E " | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | boot | ||
+ | boots | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Special Characters ===== | ||
+ | |||
+ | <code bash> | ||
+ | grep ' | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | broken$tuff | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | The **-F-- option can also be used, which stands for 'fixed string' | ||
+ | |||
+ | </ | ||
grep/regex_usage.1598095968.txt.gz · Last modified: 2020/08/22 11:32 by 192.168.1.1