Mathieu Roy <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] (Bob Proulx) a tapoté : >> find . -print0 | xargs -r0 md5sum > > Right. > But -r is easier.
The find command is easier to implement, and is just as easy to use if you save it in a shell script. #!/bin/sh -e find ${1+"$@"} -print0 | xargs -r0 md5sum When the functionality you want is available, don't worry if you don't like its interface; just wrap a more convenient interface around it. paul _______________________________________________ Bug-coreutils mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-coreutils