如何在压缩文件夹时包含特定格式的文件
我有以下工作
tar -pcvf base.tar input/myPacket/my2 --exclude-vcs input/myPacket/my3/*.bmp
当我有像“输入文件”这样的空格的目录时,我将路径包含在引号中,并且包含路径不适用于 *.bmp
tar -pcvf base.tar "input file/myPacket/my2" --exclude-vcs "input file/myPacket/my3/*.bmp"
谢谢,
I have the following working
tar -pcvf base.tar input/myPacket/my2 --exclude-vcs input/myPacket/my3/*.bmp
When i have directories with spaces like "input file" then i include the paths in quotes and the include path doesnot work for *.bmp
tar -pcvf base.tar "input file/myPacket/my2" --exclude-vcs "input file/myPacket/my3/*.bmp"
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
不要尝试与 UNIX 目录中的愚蠢空间作斗争,而是以尽可能简单的方式解决它。
Try this:
Rather than try to fight the sily spaces within UNIX directories, work around it in the easiest way possible.