summaryrefslogtreecommitdiff
path: root/libre/p7zip-libre/unzip
diff options
context:
space:
mode:
Diffstat (limited to 'libre/p7zip-libre/unzip')
-rwxr-xr-xlibre/p7zip-libre/unzip18
1 files changed, 0 insertions, 18 deletions
diff --git a/libre/p7zip-libre/unzip b/libre/p7zip-libre/unzip
deleted file mode 100755
index 201dc826c..000000000
--- a/libre/p7zip-libre/unzip
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-# unzip replacement written by Henry Jensen <hjensen@gmx.de>
-
-Opts=""
-cm="x"
-while getopts plvtTZ opt
-do
- case $opt in
- p) Opts="$Opts -so";;
- v|l) cm="l";;
- t) cm="t";;
- T|Z) ;;
- \?)break;;
- esac
-done
-shift $((OPTIND-1))
-
-7z $cm $Opts "$@"