Earlier quoted context omitted.
xargs does have limits on input length. On some platforms they aren't terribly high. Sound like -exec is potentially coming though. Edit: Swore I had gotten ARG_MAX complaints out of xargs in the past. Replies are correct though. I'm wrong here...xargs adjusts on the fly. Perhaps long ago, or some obscure use of xargs?
> xargs does have limits on input length what?
This is fixed with the `-n` argument to xargs, which lets you specify the number of arguments per invocation.