[BUG] 'find' doesn't combine '-exec ... {} +' with parentheses
Martijn Dekker
martijn at inlv.org
Fri Jan 4 12:28:21 UTC 2019
BusyBox 'find' cannot combine '-exec ... {} +' with parenthesis
arguments. This should work.
A simple test case:
$ find /dev/null \( -exec printf '%s\n' {} + \)
$ find /dev/null \( -exec printf '%s\n' {} \; \)
/dev/null
The first command prints nothing with Busybox 'find'; it should print
/dev/null like the second.
Thanks,
- M.
More information about the busybox
mailing list