即使在其他平台上使用 Ant 的 tar 任务,也可以设置 Linux 文件权限吗?
从 Ant 1.7 开始,TarFileSet 可用,它似乎允许在 tar 存档中修改文件权限。
此功能是否独立于平台工作,以便我可以在 Windows 上创建一个 tar 文件,并为该存档中的脚本文件设置执行权限,如果该文件在 Linux 上解压,该存档将具有此标志?
Starting with Ant 1.7, the TarFileSet is available which seems to allow file permission modifications in the tar archive.
Does this feature work platform-independent, so that I can for example create a tar file on Windows and set execution permissions for script files in this archive which will have this flag if the file is unpacked on Linux?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 tarfileset 设置权限,使用
filemode< /code> 和
dirmode
属性。这在创建 tar 存档时有效,即使在 Windows 上也是如此。但令人烦恼的是,untar 任务确实不支持您可能想要的反向操作:
但是,例如,如果您使用
tar -xf
,则权限可以正常恢复。Yes, you can set permissions using tarfileset, using the
filemode
anddirmode
attributes. This works when creating tar archives, even on windows.Rather annoyingly though, the untar task does not support the reverse operation that you might want:
But the permisions are restored fine if you use
tar -xf
, for example.