aboutsummaryrefslogtreecommitdiffstats
path: root/make/scripts/lst-jars.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-01-25 14:25:13 +0100
committerSven Gothel <[email protected]>2014-01-25 14:25:13 +0100
commit6613d82263357ad64a22d8f7be68fefe52f42dd4 (patch)
tree670c4b3dc9cf2832a44d127a800d5b11086b3ca0 /make/scripts/lst-jars.sh
parentb8a515bbfa9bc26aaf5291f065f6860cd5ddee11 (diff)
Add lst-jars.sh script
Diffstat (limited to 'make/scripts/lst-jars.sh')
-rwxr-xr-xmake/scripts/lst-jars.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/make/scripts/lst-jars.sh b/make/scripts/lst-jars.sh
new file mode 100755
index 0000000..eafe6e9
--- /dev/null
+++ b/make/scripts/lst-jars.sh
@@ -0,0 +1,6 @@
+#! /bin/sh
+
+for i in *.jar ; do
+ lstname=`basename $i .jar`.lst
+ unzip -l $i > $lstname
+done