I've got an exam and I'm only allowed to use the man pages. I'm wondering how I can find the pattern matching details in the man pages?
Something similar to this info:
http://www.gnu.org/software/bash/manual/bashref.html#Pattern-Matching
|
feedback
|
|
for regexes in sed and grep and most standard Unix tools
See the man page for the tool itself as well, because there might be some exceptions. for regexes in other tools Many tools that didn't originally come with Unix have their own syntax. For example, for for shell patterns Also known as wildcards or globs.
Or better yet, if You can drill down to the section manually, or get there directly by running:
a final tip You can try searching for man pages by running:
For example:
| |||||||||||||||||
feedback
|
|
Would Or you could always, you know, actually learn regexp. | |||||||
feedback
|
|
try man find and man grep, or the more robust command, info grep, info find. Depending on the os they have the full reg exp in them. Or find the man page for reg exp. | |||
|
feedback
|
aproposandinfobe disallowed too? In general get the basic man page that relates, e.g. awk (or gawk), grep, sed, perlre etc. – Slomojo Feb 3 '11 at 2:51