Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Lost in space



Hi,

On Fri, Mar 24, 2006 at 12:41:21AM -0600, Dan Nelson wrote:
> >    find . -type f | zargs md5sum | sort -w 32 > filelist.txt
> 
> find . -type f -print0 | xargs -0 md5sum

Or even:

zargs -- **/*(.) -- md5sum

The sort is not really needed, since the result of the globbing should
already be sorted.

Greetings Tobi

-- 
GPG-Key 0xE2BEA341 - signed/encrypted mail preferred
My, oh so small, homepage: http://portfolio16.de/
http://www.fli4l.de/ - ISDN- & DSL-Router on one disk!
Registered FLI4L-User #00000003

Attachment: signature.asc
Description: Digital signature



Messages sorted by: Reverse Date, Date, Thread, Author