What's the + in find /path/ -exec command '{}' + do? as opposed to find /path/ -exec command '{}' \;
|
|
|||
|
|
|
The '+' makes one big command line out of all found files to minimize the number of commands to be run. Given the case that a find command finds four files.
would produce
On the other hand
produces
|
|||||
|
|
From the man page:
|
|||||||||||||
|
