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

Re: Lost in space



In the last episode (Mar 24), Meino Christian Cramer said:
>  To do the comparison I want to md5sum each file and compare the
>  lists of files afterwards.
> 
>  My first idea was seomthing like (being in the root of the directory
>  tree in question):
> 
>    find . -type f | zargs md5sum | sort -w 32 > filelist.txt

find . -type f -print0 | xargs -0 md5sum

-- 
	Dan Nelson
	dnelson@xxxxxxxxxxxxxxx



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