summaryrefslogtreecommitdiffstats
path: root/.local/bin/ext
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/ext')
-rwxr-xr-x.local/bin/ext10
1 files changed, 5 insertions, 5 deletions
diff --git a/.local/bin/ext b/.local/bin/ext
index 927fb5b..6950ff6 100755
--- a/.local/bin/ext
+++ b/.local/bin/ext
@@ -24,15 +24,15 @@ fi
if [ -f "$archive" ] ; then
case "$archive" in
- *.tar.bz2|*.tbz2) tar xvjf "$archive" ;;
- *.tar.xz) tar -xf "$archive" ;;
- *.tar.gz|*.tgz) tar xvzf "$archive" ;;
- *.tar.zst) tar -I zstd -xf "$archive" ;;
+ *.tar.bz2|*.tbz2) bsdtar -xf "$archive" ;;
+ *.tar.xz) bsdtar -xf "$archive" ;;
+ *.tar.gz|*.tgz) bsdtar -xf "$archive" ;;
+ *.tar.zst) bsdtar -xf "$archive" ;;
+ *.tar) bsdtar -xf "$archive" ;;
*.lzma) unlzma "$archive" ;;
*.bz2) bunzip2 "$archive" ;;
*.rar) unrar x -ad "$archive" ;;
*.gz) gunzip "$archive" ;;
- *.tar) tar xvf "$archive" ;;
*.zip) unzip "$archive" ;;
*.Z) uncompress "$archive" ;;
*.7z) 7z x "$archive" ;;