bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: md5deep


From: Paul Jarc
Subject: Re: md5deep
Date: Tue, 04 Mar 2003 11:49:11 -0500
User-agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 (i686-pc-linux-gnu)

Mathieu Roy <address@hidden> wrote:
> address@hidden (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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]