Browse Source

Update plugins/extract/extract.plugin.zsh

Cause unrar to preserve directory structure. (Why is only unrar different?!)
ripdog 12 years ago
parent
commit
2264c51355
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/extract/extract.plugin.zsh

+ 1 - 1
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"