1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 16:00:41 +01:00

feat(extract): add zpaq support (#11478)

This commit is contained in:
david
2023-02-05 11:32:49 +04:00
committed by GitHub
parent f8bf8f0029
commit 9b91e82560
3 changed files with 3 additions and 1 deletions

View File

@@ -73,6 +73,7 @@ EOF
(*.zst) unzstd "$file" ;;
(*.cab) cabextract -d "$extract_dir" "$file" ;;
(*.cpio) cpio -idmvF "$file" ;;
(*.zpaq) zpaq x "$file" ;;
(*)
echo "extract: '$file' cannot be extracted" >&2
success=1 ;;