xargs
doesn't have
enough space to build a command line because it has read in a really
large item and it doesn't fit. You can probably work around this
problem with the -s option, but the default size is pretty
large. You must be trying pretty hard to break xargs
.
find
.
xargs
exits with status 255, xargs
is supposed to stop. If this is not what you intended, wrap the
program you are trying to invoke in a shell script which doesn't
return status 255.
find
.