查找jar 包中重复的 class 文件的脚本

如果在开发中一个类有几个不通的版本在不通的jar包里,就可能有问题,
下面是用TAR包 模拟jar包 的脚本,找出重复的类,打印其TAR包名和类名:
for jarf in ` find . -name \*.tar -print`
do
    tar tvf "$jarf" | awk '{ print $6 }' >>tmpfile
    tar tvf "$jarf" | awk '{ print ''"'"$jarf"'"'', $6}' >>tmpfile2
done sort tmpfile | uniq -d >tmpfile3
for dclass in `cat tmpfile3`
do
    printf("duplicate class:[%s]\n" $dclass
    grep "$dclass" tmpfile2
    printf "duplicate class end \n"
done rm -f tmpfile tmpfile2 tmpfile3