Is there a quick way to just print the examples?
Sim.
man find | perl -ne 'print if /^EXAMPLE/.../^[A-Z]/'
Soluções semelhantes devem existir usando awk
etc
man find | awk '/^EXAMPLES/,/^EXIT/ { print }'
man find
abre a página de manual para encontrar no meu pager.
Existe algo como
example find
que imprimiria
find /usr/lib -name "stdint.h"