Follow-up Comment #1, bug #19904 (project findutils):
The point the submiter is making is that
xargs -d' '
executes the command one more time, with an empty string as arg. Shorter
testcase:
[EMAIL PROTECTED]:/tmp/findtest$ touch foo
[EMAIL PROTECTED]:/tmp/findtest$ find . -name foo |xargs -d' '
./foo
[EMAIL PROTECTED]:/tmp/findtest$ find . -name foo |xargs -n1
./foo
[EMAIL PROTECTED]:/tmp/findtest$
Note the additinoal empty line.
cu andreas
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?19904>
_______________________________________________
Nachricht geschickt von/durch Savannah
http://savannah.gnu.org/
_______________________________________________
Bug-findutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-findutils