diff options
author | nfnty <git@nfnty.se> | 2017-01-22 00:31:02 +0100 |
---|---|---|
committer | nfnty <git@nfnty.se> | 2017-01-22 00:31:28 +0100 |
commit | c65a61c7db1178201ce2c0118c033f9b8ae43bd1 (patch) | |
tree | 724ccdaeb8a03105719efc25f7703da4732f1374 | |
parent | f33891d8ab2b9b61d7435d4c57b7b44e395e94f3 (diff) | |
download | ranger-c65a61c7db1178201ce2c0118c033f9b8ae43bd1.tar.gz |
config/rifle.conf: Add `--each` to atool for multiple files
Partial fix for #746
-rw-r--r-- | ranger/config/rifle.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ranger/config/rifle.conf b/ranger/config/rifle.conf index aadc2f2c..0b812192 100644 --- a/ranger/config/rifle.conf +++ b/ranger/config/rifle.conf @@ -185,10 +185,10 @@ ext xcf, X, flag f = gimp -- "$@" # avoid password prompt by providing empty password ext 7z, has 7z = 7z -p l "$@" | "$PAGER" # This requires atool -ext ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has als = als -- "$@" | "$PAGER" -ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has als = als -- "$@" | "$PAGER" -ext 7z|ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has aunpack = aunpack -- "$@" -ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has aunpack = aunpack -- "$@" +ext ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has als = als --each -- "$@" | "$PAGER" +ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has als = als --each -- "$@" | "$PAGER" +ext 7z|ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has aunpack = aunpack --each -- "$@" +ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has aunpack = aunpack --each -- "$@" # Fallback: ext tar|gz, has tar = tar vvtf "$@" | "$PAGER" |