Cover all multipart archives created by 7zip

This commit is contained in:
djape 2017-10-12 22:47:51 +02:00 committed by GitHub
parent ee22b43d40
commit 883979995f
1 changed files with 1 additions and 1 deletions

View File

@ -37,6 +37,6 @@ case "${archive_name}" in
(*.rar) unrar &> /dev/null \
&& unrar x -ad "${archive_name}" \
|| rar x -ad "${archive_name}" ;;
(*.7z|*.7z.001) 7za x "${archive_name}" ;;
(*.7z|*.001) 7za x "${archive_name}" ;;
(*) print "${0}: unknown archive type: ${archive_name}" ;;
esac