我想执行 tar 压缩的试运行并将条目打印到标准输出,而无需实际创建 tar。
到目前为止我已经尝试过:
// just spins
$ tar t -O Downloads
$ tar c -O Downloads
tar: Option -O is not permitted in mode -c
tar --help
给出以下内容:
⋊> ~ tar --help 08:06:22
tar(bsdtar): manipulate archive files
First option must be a mode specifier:
-c Create -r Add/Replace -t List -u Update -x Extract
Common Options:
-b # Use # 512-byte records per I/O block
-f <filename> Location of archive
-v Verbose
-w Interactive
Create: tar -c [options] [<file> | <dir> | @<archive> | -C <dir> ]
<file>, <dir> add these items to archive
-z, -j, -J, --lzma Compress archive with gzip/bzip2/xz/lzma
--format {ustar|pax|cpio|shar} Select archive format
--exclude <pattern> Skip files that match pattern
-C <dir> Change to <dir> before processing remaining files
@<archive> Add entries from <archive> to output
List: tar -t [options] [<patterns>]
<patterns> If specified, list only entries that match
Extract: tar -x [options] [<patterns>]
<patterns> If specified, extract only entries that match
-k Keep (don't overwrite) existing files
-m Don't restore modification times
-O Write entries to stdout, don't restore to disk
-p Restore permissions (including ACLs, owner, file flags)
bsdtar 3.3.2 - libarchive 3.3.2 zlib/1.2.11 liblzma/5.0.5 bz2lib/1.0.6
答案1
要进行仅列出文件的试运行,请使用-v
详细模式列出文件和使用 /dev/null 作为输出,以避免写入实际文件的时间/空间开销.-v
如果您只想查看 tar 错误,请排除。
tar -cvf /dev/null mydir
答案2
tar t
列出现有存档。您没有提供任何参数 ( -f
),因此它在 stdin 上等待它。人类不擅长在键盘上输入 tar 存档,因此它不是很有用。
tar c
不接受选项。帮助消息中指出-O
这是一个选项。x
您可以将这两者结合起来以获得预期的结果:
tar c Downloads | tar t
没有-f
参数tar c
,因此它将把压缩输出写入标准输出。然后我们将其通过管道传输到tar t
标准输入,使用之前“卡住”的模式。