From 720d083ddfd809ddcb7c9c4fe34f7b3a118e964e Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Wed, 17 Apr 2019 21:38:16 +0200 Subject: [PATCH] [x extractor] add option to unpack debian archives --- shell/extract.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell/extract.sh b/shell/extract.sh index be0b993..09c50ae 100755 --- a/shell/extract.sh +++ b/shell/extract.sh @@ -5,6 +5,8 @@ x() { local extractor if [ -f "$zipfile" ]; then case "$zipfile" in + *.deb) + extractor="ar x" ;; *.tar.lrz) extractor="lrztar -d" ;; *.lrz)