我在安装了 cygwin 的 Windows 机器上从 ANT build.xml 调用 shell 脚本。脚本被调用,初始的 echo 语句正在脚本中执行。但它会在脚本中的“sed”或“find”等语句中引发错误。当我直接在 cygwin 中执行脚本时,它已成功执行。从 ANT 调用它时,它会报错并且构建失败。我从 build.xml 调用 shell 脚本,如下所示:
<target name="xml2prop"
description="exec shell script"
>
<exec dir="." executable="C:\cygwin\bin\bash" osfamily="windows">
<arg value="C:\script\testscript.sh"/>
<arg value="${root}"/>
</exec>
</target>
shell脚本片段如下:
if [ $# -lt 1 ]
then
echo "error"
else
echo "\$1 is \"$1\" and total args to $0 are $# "
rt="${1//\\//}"
echo $rt
fi;
find "$rt" -name "*.xml" |
while read xmlfile
do
echo "$xmlfile";
done
我得到的错误如下
[exec] $1 is "C:\new\test" and total args to C:\script\testscript.sh are 1
[exec] C:/new/test
[exec] FIND: Parameter format not correct
你能帮我找出问题吗?