Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Lost in space
- X-seq: zsh-users 10066
- From: Dan Nelson <dnelson@xxxxxxxxxxxxxxx>
- To: Meino Christian Cramer <Meino.Cramer@xxxxxx>
- Subject: Re: Lost in space
- Date: Fri, 24 Mar 2006 00:41:21 -0600
- Cc: zsh-users@xxxxxxxxxx
- In-reply-to: <20060324.073117.41200021.Meino.Cramer@xxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <20060324.073117.41200021.Meino.Cramer@xxxxxx>
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