From 7b1987214139f32d7a4ee0099052abd981c75f2a Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Fri, 13 Mar 2020 01:41:49 -0400 Subject: [PATCH] fish: add JAR manifest function --- fish/functions/manifest.fish | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 fish/functions/manifest.fish diff --git a/fish/functions/manifest.fish b/fish/functions/manifest.fish new file mode 100644 index 0000000..362cb28 --- /dev/null +++ b/fish/functions/manifest.fish @@ -0,0 +1,3 @@ +function manifest --argument-name jar_file + unzip -p "$jar_file" META-INF/MANIFEST.MF +end