From 1b3c7257d3b14f256db2b134951469701c9b7f5d Mon Sep 17 00:00:00 2001 From: Mandy Schoep Date: Mon, 11 Feb 2019 12:32:29 +0100 Subject: [PATCH] Added 7zip --- functions/extract.fish | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions/extract.fish b/functions/extract.fish index a775ab8..f37888a 100644 --- a/functions/extract.fish +++ b/functions/extract.fish @@ -19,6 +19,8 @@ function extract --description "Expand or extract bundled & compressed files" unrar x $argv[1] case zip unzip $argv[1] + case 7z + 7z e $argv[1] case '*' echo "unknown extension" end