[kepler-dev] [Bug 4013] - Make sure duplicate jars are not included in the installer
bugzilla-daemon at ecoinformatics.org
bugzilla-daemon at ecoinformatics.org
Wed May 13 16:11:03 PDT 2009
http://bugzilla.ecoinformatics.org/show_bug.cgi?id=4013
------- Comment #3 from walbridge at nceas.ucsb.edu 2009-05-13 16:11 -------
Perhaps better yet, use a checksumming algorithm to check for duplicates.
Something like:
find . -name "*.jar" | xargs sha1sum | sort > jar-list.txt
Then:
cut -d" " -f1 jar-list.txt | uniq -c
Should give you a listing of hashes which are duplicated.
More information about the Kepler-dev
mailing list