find: combining -path and -prune to exclude files and directories
Try this variant:
$ find /etc /srv \( -path /srv/tftp/pxelinux.cfg -o -path /etc/mtab \) \
-prune -o -print
This will "prune" either of those 2 -path
arguments from the list, and print everything else.