diff options
author | Robby Russell <robby@planetargon.com> | 2013-03-26 21:57:54 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-03-26 21:57:54 -0700 |
commit | ed69d1e7368fbf22eca230f9251141ab5f20911c (patch) | |
tree | e3e1c1c8d49b7d3dbd916318a2fbaf0bacaf66eb /plugins | |
parent | eabf51e0fe0fd30c2fb7944859dee1644bfdb14c (diff) | |
parent | 2264c51355542df082c72468eea2dfa5a8e54ada (diff) | |
download | zsh-ed69d1e7368fbf22eca230f9251141ab5f20911c.tar.gz zsh-ed69d1e7368fbf22eca230f9251141ab5f20911c.tar.bz2 zsh-ed69d1e7368fbf22eca230f9251141ab5f20911c.zip |
Merge pull request #1611 from ripdog/patch-1
Update plugins/extract/extract.plugin.zsh
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/extract/extract.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/extract/extract.plugin.zsh b/plugins/extract/extract.plugin.zsh index 5c125e98b..23e86c593 100644 --- a/plugins/extract/extract.plugin.zsh +++ b/plugins/extract/extract.plugin.zsh @@ -53,7 +53,7 @@ function extract() { (*.lzma) unlzma "$1" ;; (*.Z) uncompress "$1" ;; (*.zip) unzip "$1" -d $extract_dir ;; - (*.rar) unrar e -ad "$1" ;; + (*.rar) unrar x -ad "$1" ;; (*.7z) 7za x "$1" ;; (*.deb) mkdir -p "$extract_dir/control" |