This commit is contained in:
zzz
2020-05-21 13:46:03 +00:00
parent 37231ba065
commit 6da859492f

12
jars/jarcontents.sh Executable file
View File

@ -0,0 +1,12 @@
#
# list classes in jars/wars on the command line
#
# zzz 2020-05 CCO
#
# to get case-sensitive so META-INF is on top
export LC_ALL=C
for i in "$@"
do
jar tf "$i" | sort
done