mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Support for more archive formats.
This commit is contained in:
parent
ff0b25b745
commit
f0136f2aec
1 changed files with 2 additions and 0 deletions
|
@ -43,6 +43,8 @@ function extract() {
|
|||
case $1 in
|
||||
*.tar.bz2) tar xvjf $1;;
|
||||
*.tar.gz) tar xvzf $1;;
|
||||
*.tar.xz) tar xvJf $1;;
|
||||
*.tar.lzma) tar --lzma -xvf $1;;
|
||||
*.bz2) bunzip $1;;
|
||||
*.rar) unrar $1;;
|
||||
*.gz) gunzip $1;;
|
||||
|
|
Loading…
Reference in a new issue