diff options
author | Sven Gothel <[email protected]> | 2014-01-25 14:25:13 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-01-25 14:25:13 +0100 |
commit | 6613d82263357ad64a22d8f7be68fefe52f42dd4 (patch) | |
tree | 670c4b3dc9cf2832a44d127a800d5b11086b3ca0 /make/scripts/lst-jars.sh | |
parent | b8a515bbfa9bc26aaf5291f065f6860cd5ddee11 (diff) |
Add lst-jars.sh script
Diffstat (limited to 'make/scripts/lst-jars.sh')
-rwxr-xr-x | make/scripts/lst-jars.sh | 6 |
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 |