support .tar.zst (#903)
This commit is contained in:
parent
219ea40fe9
commit
1692a8fe15
1 changed files with 1 additions and 0 deletions
|
@ -27,6 +27,7 @@ if [ -f "$archive" ] ; then
|
||||||
*.tar.bz2|*.tbz2) tar xvjf "$archive" ;;
|
*.tar.bz2|*.tbz2) tar xvjf "$archive" ;;
|
||||||
*.tar.xz) tar -xf "$archive" ;;
|
*.tar.xz) tar -xf "$archive" ;;
|
||||||
*.tar.gz|*.tgz) tar xvzf "$archive" ;;
|
*.tar.gz|*.tgz) tar xvzf "$archive" ;;
|
||||||
|
*.tar.zst) tar -I zstd -xf "$archive" ;;
|
||||||
*.lzma) unlzma "$archive" ;;
|
*.lzma) unlzma "$archive" ;;
|
||||||
*.bz2) bunzip2 "$archive" ;;
|
*.bz2) bunzip2 "$archive" ;;
|
||||||
*.rar) unrar x -ad "$archive" ;;
|
*.rar) unrar x -ad "$archive" ;;
|
||||||
|
|
Loading…
Reference in a new issue