mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-10 16:20:17 -08:00
Fix guessing commands for zstandard archives in Dired
* lisp/dired-aux.el (dired-guess-shell-alist-default): Fix zstdandard commands. (Bug#66532)
This commit is contained in:
parent
90db29aff8
commit
d5e5ea4e36
1 changed files with 1 additions and 1 deletions
|
|
@ -1172,7 +1172,7 @@ Return the result of `process-file' - zero for success."
|
||||||
"unxz")
|
"unxz")
|
||||||
|
|
||||||
;; zstandard archives
|
;; zstandard archives
|
||||||
`(,(rx (or ".tar.zst" ".tzst") eos) "unzstd -c %i | tar -xf -")
|
`(,(rx (or ".tar.zst" ".tzst") eos) "unzstd -c ? | tar -xf -")
|
||||||
`(,(rx ".zst" eos) "unzstd --rm")
|
`(,(rx ".zst" eos) "unzstd --rm")
|
||||||
|
|
||||||
'("\\.shar\\.Z\\'" "zcat * | unshar")
|
'("\\.shar\\.Z\\'" "zcat * | unshar")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue