From 1692a8fe1599ec0d3fe859e8cfc3b363eefbbaba Mon Sep 17 00:00:00 2001 From: MRAAGH <33424247+MRAAGH@users.noreply.github.com> Date: Tue, 23 Feb 2021 17:43:47 +0100 Subject: [PATCH] support .tar.zst (#903) --- .local/bin/ext | 1 + 1 file changed, 1 insertion(+) diff --git a/.local/bin/ext b/.local/bin/ext index 806ce5e..927fb5b 100755 --- a/.local/bin/ext +++ b/.local/bin/ext @@ -27,6 +27,7 @@ if [ -f "$archive" ] ; then *.tar.bz2|*.tbz2) tar xvjf "$archive" ;; *.tar.xz) tar -xf "$archive" ;; *.tar.gz|*.tgz) tar xvzf "$archive" ;; + *.tar.zst) tar -I zstd -xf "$archive" ;; *.lzma) unlzma "$archive" ;; *.bz2) bunzip2 "$archive" ;; *.rar) unrar x -ad "$archive" ;;