是否有任何方法可以在Linux中使用Ant设置文件所有权和权限?我找到了Antchmod
和chown
任务,但它们仅适用于Unix
我正试图通过Ant和Ant deb任务添加Debian安装程序,在将所有所需文件移动到部署目录后,我需要设置它们的所有权和权限。
使用内置的Ant chmod任务-http://ant.apache.org/manual/Tasks/chmod.html
单个文件:
<chmod file="${dist}/start.sh" perm="ugo+rx"/>
多个文件:
<chmod perm="g+w">
<fileset dir="shared/sources1">
<exclude name="**/trial/**"/>
</fileset>
</chmod>
我目前无法访问Linux上的Ant(将在家中访问),但试着看看这是否适用于
<target name="chmod_task">
<exec executable="chmod">
<arg value="755"/>
<arg value="/path/filename.ext"/>
</exec>
</target>