Hello Andrew,

Andrew McGill <list2008 <at> lunch.za.net> writes:
> 
>     find -type f -print0 | 
>         xargs -0 -n 8 --max-procs=16 md5sum >& ~/md5sums
> 
>     sort -k2 < md5sums > md5sums.sorted

To avoid losing output, use append mode for writing:
     : > ~/md5sums
     find -type f -print0 | 
         xargs -0 -n 8 --max-procs=16 md5sum >> ~/md5sums 2>&1

     sort -k2 < md5sums > md5sums.sorted

This just recently came up in Autoconf:
<http://thread.gmane.org/gmane.comp.shells.bash.bugs/11958>

Cheers,
Ralf



_______________________________________________
Bug-coreutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to