find の man を見ていたら -exec について 以下のように書いてありました。
-exec command ; -exec command {} +
プラス? と思いつつも英語を読まずに即検索。 書いてあるページがありました。
[参考]
Linux - find の -exec optionの末尾につく \; と + の違い。
- Qiita (2013/10/01)
$ find . -exec echo {} \; ./test1.txt ./test2.txt ./test3.txt
$ find . -exec echo {} + ./test1.txt ./test2.txt ./test3.txt
なるほど。