Add rar
command to extract
function.
This addition tries to use the `rar` command, if `unrar` isn't found.
This commit is contained in:
parent
7e33c7189e
commit
bc6b9fed8d
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ while (( $# > 0 )); do
|
|||
(*.lzma) unlzma "$1" ;;
|
||||
(*.Z) uncompress "$1" ;;
|
||||
(*.zip) unzip "$1" -d $extract_dir ;;
|
||||
(*.rar) unrar e -ad "$1" ;;
|
||||
(*.rar) unrar e -ad "$1" || rar e -ad "$1" ;;
|
||||
(*.7z) 7za x "$1" ;;
|
||||
(*.deb)
|
||||
mkdir -p "$extract_dir/control"
|
||||
|
|
Loading…
Add table
Reference in a new issue