[NTLUG:Discuss] File system modification tracker
Leroy Tennison
leroy_tennison at prodigy.net
Thu Feb 14 18:18:04 CST 2013
On 02/13/2013 12:38 PM, rp8034l wrote:
> On 02/13/13 00:07, Leroy Tennison wrote:
>> Anyone know of a good program to do this? The reason I ask is I'm
>> trying to discover where KDE4 stores it's configuration and what the
>> entries in plasma-desktop-appletsrc mean.
>
> <snip>
>
>
> Why not try:
>
>
> find . -type f -print0 | sort -z | xargs -0 md5sum
>
>
> 'find' identifies all files is a directory tree.
> (The above example starts in the current directory)
>
> 'md5sum' generates a MD5 checksum for each file.
>
> 'sort' make the output more easily processed with 'diff'.
>
>
> --------
> RichardP
>
>
>
> _______________________________________________
> http://www.ntlug.org/mailman/listinfo/discuss
>
Congratulations on a good, simple solution. Thanks.
More information about the Discuss
mailing list