我编写了一个shell脚本,其命令如下:
version=$1;
sed -i 's/def version = ".*"/def version = "'$version'"/' $file;
grails package-plugin;
echo -n 'Enter description of new version: ';
read desc;
git commit -m "$desc";
我想将其转换为groovy script
,即使用GANT
创建自定义grails-command,执行相同的操作。
我搜索了很多。但是,我无法在Apache Ant API中找到正确的方法来运行上面的linux命令。
请建议我使用等效的GANT脚本解决我的shell脚本代码
Atleast建议我where to start with
来完成我的任务。
非常感谢你提前...