gpt4 book ai didi

tar 创建重命名目录

转载 作者:行者123 更新时间:2023-12-04 21:15:16 25 4
gpt4 key购买 nike

我有一个名为 dir 的目录,里面有文件 file1 file2 file3 我想创建一个从它 gzip 的 tar 目录称为 dir.tar.gz 但层次结构为:

anotherdir/file1
anotherdir/file2
anotherdir/file3

总是可以选择编写一个 shell 脚本来将 dir 重命名为 anotherdir 然后 tar 它,但我希望有一个更优雅的解决方案。

最佳答案

在压缩过程中使用符号链接(symbolic link)和取消引用。

$ mkdir dir && touch dir/file{1,2,3} && ln -sf dir anotherdir
$ tar -hcvpf a.tar anotherdir
anotherdir/
anotherdir/file1
anotherdir/file2
anotherdir/file3
$ tar -tf a.tar
anotherdir/
anotherdir/file1
anotherdir/file2
anotherdir/file3

关于tar 创建重命名目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5206459/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com