Exec doesn't either if you use "+" as a terminator:
find . $(options) -exec command {} \;
find . $(options) -exec command {} +
> exec is just an ugly hack on find
Obvious and complete nonsense, -exec is both an important predicate of find and a useful and efficient tool.
-print0/xargs -0, now that is a hack.
Exec doesn't either if you use "+" as a terminator:
executes one command per match, executes a single command with all matches> exec is just an ugly hack on find
Obvious and complete nonsense, -exec is both an important predicate of find and a useful and efficient tool.
-print0/xargs -0, now that is a hack.