Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 13 years ago.
由于您在两个文件中使用相同的 /dir1/dir2,因此您还可以使用 tar 的 -C 参数来指定目录。
/dir1/dir2
tar
-C
tar c -C /dir1/dir2 -vf test.tar file1.xml file2.xml
那么,你的 tar 文件中就不会有子目录了。
Since you use the same /dir1/dir2 in both files, you could also use tar’s -C parameter to specify the directory.
Then, there would be no subdirectories in your tar file.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
由于您在两个文件中使用相同的
/dir1/dir2
,因此您还可以使用tar
的-C
参数来指定目录。那么,你的 tar 文件中就不会有子目录了。
Since you use the same
/dir1/dir2
in both files, you could also usetar
’s-C
parameter to specify the directory.Then, there would be no subdirectories in your tar file.