10

dired+Debian Squeeze 变体上的 Emacs 23.2.1 中,我选择了四个文件,*然后按下Z以压缩它们。我回答y了提示,并在迷你缓冲区中看到了一些状态更新。我在哪里可以找到压缩文件?我测试了一个文件C-u Z如何在 Emacs 中 [tar 和] 压缩标记的文件?

(为了抢占任何关于 tar、gzip、其他格式和档案的哲学或方法论讨论,我只想将四个文件作为压缩数据存储在一个文件中。如果可以通过 tar 和 gzip 或直接压缩每个文件来实现存档没关系。)

4

4 回答 4

20

如果dired+是类似的东西dired,您可以用标记文件m然后点击!(在标记的文件上运行shell命令)并将命令指定为tar -czf foo.tar.gz *(这*是一个特殊的标记,被标记文件的名称替换)。

于 2012-04-19T11:27:11.220 回答
6

您还可以通过标记文件并将其复制到存档文件来存档文件。

例如,将几个文件标记为 dired,然后选择m-x dired-do-copy.

当提示输入目的地时,键入test.zip。这些文件将自动添加到 zip 存档中。

您还可以通过在 dired 中选择文件并运行命令来解压缩文件dired-do-extract

要进行设置,请查看以下变量: dired-to-archive-copy-alist dired-extract-alist

这是我的设置,它已经为我服务了很多年......

;; dired-a provides support functions, including archiving, for dired
(load "dired-a")

;; Alist with information how to add files to an archive (from dired-a)
;; Each element has the form (REGEXP ADD-CMD NEW-CMD). If REGEXP matches
;; the file name of a target, that target is an archive and ADD-CMD is a command
;; that adds to an existing archive and NEW-CMD is a command that makes a new
;; archive (overwriting an old one if it exists). ADD-CMD and NEW-CMD are:
;; 1. Nil (meaning we cannot do this for this type of archive) (one of
;;    ADD-CMD and NEW-CMD must be non-nil).
;; 2. A symbol that must be a function e.g. dired-do-archive-op.
;; 3. A format string with two arguments, the source files concatenated into
;;    a space separated string and the target archive.
;; 4. A list of strings, the command and its flags, to which the target and
;;    the source-files are concatenated."
(setq dired-to-archive-copy-alist
      '(("\\.sh\\(ar\\|[0-9]\\)*$" nil "shar %s > %s")
    ("\\.jar$" ("jar" "uvf") ("jar" "cvf"))
    ("\\.tar$" ("tar" "-uf") ("tar" "-cf"))
    ("\\.tgz$\\|\\.tar\\.g?[zZ]$" ("tar" "-uf %s" "|" "gzip > %s") ("tar" "-czvf"))
    ("\\.ear$" ("zip" "-qr") ("zip" "-qr"))
;   ("\\.rar$" ("rar" "a")   ("rar" "a"))
    ("\\.war$" ("zip" "-qr") ("zip" "-qr"))
    ("\\.zip$" ("zip" "-qr") ("zip" "-qr"))
    ("\\.wmz$" ("zip" "-qr") ("zip" "-qr")) ;; for media player skins
    ("\\.arc$" ("arc" "a") nil)
    ("\\.zoo$" ("zoo" "aP") nil)
    ))

;; use pkzip with manipulating zip files (t) from within dired (use zip
;; and unzip otherwise)
(setq archive-zip-use-pkzip nil)

;; add these file types to archive mode to allow viewing and changing
;; their contents
(add-to-list 'auto-mode-alist '("\\.[ejrw]ar$\\'" . archive-mode))

;; modify the dired-extract switches to use the directory
;; ~/download/tryout as the default extract directory for zip files
(defconst MY_TRYOUT_DIR "~/downloads/tryout"
  "Directory for extracting files")

(setq dired-extract-alist
      `(
    ("\\.u\\(ue\\|aa\\)$" . dired-uud)
    ("\\.jar$" . "jar -xvf %s")
    ("\\.tar$" . ,(concat "tar -xf %s -C " MY_TRYOUT_DIR))
    ("\\.tgz$\\|\\.tar\\.g?[zZ]$" . ,(concat "tar -xzf %s -C " MY_TRYOUT_DIR))
    ("\\.arc$" . "arc x %s ")
    ("\\.bz2$" . ,(concat "bunzip2 -q %s"))
    ("\\.rar$" . ,(concat "unrar x %s " MY_TRYOUT_DIR "\\"))
    ("\\.zip$" . ,(concat "unzip -qq -Ux %s -d " MY_TRYOUT_DIR))
    ("\\.ear$" . ,(concat "unzip -qq -Ux %s -d " MY_TRYOUT_DIR))
    ("\\.war$" . ,(concat "unzip -qq -Ux %s -d " MY_TRYOUT_DIR))
    ("\\.zoo$" . "zoo x. %s ")
    ("\\.lzh$" . "lha x %s ")
    ("\\.7z$"  . "7z e %s ")
    ("\\.g?[zZ]$" . "gzip -d %s")   ; There is only one file
    ))
于 2012-04-20T12:15:22.783 回答
1

平台:Ubuntu

要求

系统:
sudo apt-get install atool

Emacs:
Mx package-list-packages
Cs dired-atool RET
i
x

解决方案

1)标记dired缓冲区中的文件。
2) Mx dired-atool-do-pack 注意:确保 shell-file-name 设置为“/bin/bash”。

于 2017-08-28T20:10:29.633 回答
0

在回答后一个问题时,另一个可用于从 dired 生成压缩 tar 文件的工具是pack。标记所需的文件并执行pack-dired-do-pack,指定whatever.tar.gz为输出文件名。

于 2019-10-07T21:09:36.080 回答