I would like to grep a chunk of data from example: man find.
I know there is a section of examples in man find, it starts with EXAMPLES and end with EXIT STATUS. Hence i want to grep that specific chunk of data out.
How to do that with simplest way ? best without using other tools which i might not know how to use yet.
$man find | grep '\<EXAMPLES .... ' ?
I find RegEx is very hard to remember and apply.. Anybody has got any trick to it ? thx