What data format are you trying to dedup? For some formats (like line data) it's often easier to just use a text editor with good sort and regex support...
Aaron
--
You received this message because you are subscribed to the Google Groups "Collexion" group.
To post to this group, send email to coll...@googlegroups.com.
To unsubscribe from this group, send email to collexion+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/collexion?hl=en.
-todd[1]
> --
> You received this message because you are subscribed to the Google Groups "Collexion" group.
> To post to this group, send email to coll...@googlegroups.com.
> To unsubscribe from this group, send email to collexion+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/collexion?hl=en.
>
--
CONFIDENTIALITY NOTICE: This email is for sole use of intended
recipient(s). Unauthorized use is prohibited.
The dedup feature was pretty slow when I tried it, but it may have
improved in FreeBSD 9. Haven't tried it on Solaris/Illuminos yet.
find /dir/of/files -type f -exec md5sum {} >> ~/sumlist \;
awk '{ print $1 }' ~/sumlist | sort | uniq -d | grep - ~/sumlist | awk '{ print $2 }'
--
nx <n...@nu-ex.com>
find /dir/of/files -type f -exec md5sum {} >> ~/sumlist \;
awk '{ print $1 }' ~/sumlist | sort | uniq -d | xargs -i grep {} ~/sumlist | awk '{ print $2 }'
--
nx <n...@nu-ex.com>