我正在尝试解压缩远程服务器中可用的 zip 文件。完成后有一个日志条目,这根本不会出现。输出文件也没有太多细节。
1.) 如何禁用 sshexec 控制台打印?2.) 为什么这不打印最终的记录器语句?3.) 这不是提取完整的 zip 文件吗?
<target name="unzip">
<echo level="info">==== Extracting zip file ====</echo>
<sshexec host="${host}" username="${user}" password="${password}" output="${log.file}" command="unzip -o ${path}/${zipdata}.zip -d ${path2}/${zipdata}/" trust="true" />
<echo level="info">==== Extracting zip file completed====</echo>
</target>