From 17ed3169c0dcb83169710469349a43af98a70adc Mon Sep 17 00:00:00 2001 From: Bedniakov Aleksei Date: Tue, 13 Jun 2023 11:48:33 +0200 Subject: [PATCH] Update extract.fish with 7z Added `7z` dearchivation command. Using it a lot. --- functions/extract.fish | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions/extract.fish b/functions/extract.fish index a775ab8..022e6e8 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 x $argv[1] case '*' echo "unknown extension" end