Support for multipart 7z archives

This commit is contained in:
djape 2017-10-08 23:53:35 +02:00 committed by GitHub
parent 8fbd143b01
commit ee22b43d40
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) 7za x "${archive_name}" ;;
(*.7z|*.7z.001) 7za x "${archive_name}" ;;
(*) print "${0}: unknown archive type: ${archive_name}" ;;
esac