[EMAIL PROTECTED] (Paul Jarc) a tapoté : > 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.
Maybe it would be nice to include predefined aliases along with gnu coreutils, so users, whatever their knowlegde, can make so. While with little knowledge you can prefectly understand the proposed command, I think it's a bad assumption to consider that all GNU/Linux users have this knowledge from the start. In RedHat, a /etc/profile.d directory exists, and /etc/profile "source" all files in /etc/profile.d. There no such directory in usual Debian installation (I created it on my boxes, since I find this usefull) but it can be proposed. Why not adding a /etc/profile.d/coreutils.sh, with usefull aliases? -- Mathieu Roy << Profile << http://savannah.gnu.org/users/yeupou << >> Homepage >> http://yeupou.coleumes.org >> << GPG Key << http://stock.coleumes.org/gpg << _______________________________________________ Bug-coreutils mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-coreutils