Hi, On Thu, Aug 15, 2013 at 06:17:59PM +0200, Rene Engelhard wrote: > rene@frodo:~$ find tmp -name "notexisting" | xargs rm > rm: missing operand > Try `rm --help' for more information. > rene@frodo:~$ echo $? > 123 > rene@frodo:~$
This of course is pure nonsense. Don't write such stuff when in a BoF. Really this is: rene@frodo:~$ find tmp -name "notexisting" -exec rm {} \; rene@frodo:~$ echo $? 0 so find seems to return 0.... Regards, Rene -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org