Bash tar 附加文件
如何将文件附加到 tar,例如位于 /usr/file.txt
中的文件?
我想将其以 tar 形式附加到 var/file.txt
中,以便将来将其提取到 [tar location]/var/file.txt
而不是 [tar location ]/usr/file.txt
,使用
tar --append --file foo.tar bar
Is it possible to put file in tar this way without replacement /usr/file.txt
to /var/file.txt< /code> 归档之前?
How to append file to tar, e.g. file located in /usr/file.txt
?
I want to append it in tar to var/file.txt
for future extract it into [tar location]/var/file.txt
instead of [tar location]/usr/file.txt
, using the
tar --append --file foo.tar bar
Is it possible to put file in tar this way without replacing /usr/file.txt
to /var/file.txt
before archiving?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 GNU tar,则有一个
--transform
选项,它采用类似 sed 的表达式作为参数:If you're using GNU tar, there's a
--transform
option for that, which takes a sed-like expression as argument:我能想到的唯一方法是使用符号链接
var/file.txt -> /usr/file.txt
。The only way I can think of is to use a symlink
var/file.txt -> /usr/file.txt
.