diff options
author | Robby Russell <robby@planetargon.com> | 2011-05-26 01:13:18 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-05-26 01:13:18 -0700 |
commit | a81b0171ccdaf478fdc88b4e81f1ced943f7ef56 (patch) | |
tree | 32f74d83f736115e560f0c7c14a1e2755553079a /lib/functions.zsh | |
parent | 4dd4bf84ed1c46aaebdd51a5eaeb4f930db143da (diff) | |
parent | fcc7801435fd2c5c6defcfbfc736e22341500a9d (diff) | |
download | zsh-a81b0171ccdaf478fdc88b4e81f1ced943f7ef56.tar.gz zsh-a81b0171ccdaf478fdc88b4e81f1ced943f7ef56.tar.bz2 zsh-a81b0171ccdaf478fdc88b4e81f1ced943f7ef56.zip |
Merge pull request #196 from asymmetric/master
Add missing flag to unrar
Diffstat (limited to 'lib/functions.zsh')
-rw-r--r-- | lib/functions.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/functions.zsh b/lib/functions.zsh index 6f5d015f7..b29d3e482 100644 --- a/lib/functions.zsh +++ b/lib/functions.zsh @@ -29,7 +29,7 @@ function extract() { *.tar.xz) tar xvJf $1;; *.tar.lzma) tar --lzma -xvf $1;; *.bz2) bunzip $1;; - *.rar) unrar $1;; + *.rar) unrar x $1;; *.gz) gunzip $1;; *.tar) tar xvf $1;; *.tbz2) tar xvjf $1;; |