对前一篇的优化,补充单脚本执行成功就及时备份,原来这里是模块备份
Jenkins基础篇 系列之-—07 实现SQL脚本批量执行
Ant知识
官网说明
在ant中,无法实现常见的字符重操作,比如截取、替换。我们可以借助ant-contrib中的propertyregex任务实现字符串的截取、替换
1、字符串的截取
<!--${file.separator} 文件分割符 ,windows ,linux / -->
<propertyregex property="result"
input="D:apache-ant-1.9.6-binliba.txt"
regexp="([^*]*)${file.separator}"
select="1"
casesensitive="false" />
<echo>文件绝对路径:${result}</echo>
<propertyregex property="result"
input="D:apache-ant-1.9.6-binliba.txt"
regexp="[^${file.separator}]+$" select="