我编写了一个带有以下命令的 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
ie,以创建一个执行相同操作的自定义 grails-command,使用GANT
.
我搜索了很多。但是,我无法在 Apache Ant API 中找到合适的方法来运行像上面这样的 linux 命令。
请建议我使用等效的 GANT 脚本解决我的 shell 脚本代码
至少建议我where to start with
完成我的任务。
非常感谢您提前...