我对 sshexec 任务中的变量有疑问。我的 build.xml 蚂蚁脚本看起来像:
<?xml version="1.0" encoding="UTF-8"?>
<project name="sshexecproject" basedir="." default="build">
<target name="build">
<sshexec
host="192.168.2.106"
username="root"
password="xxx"
commandResource="${basedir}/to_run.sh"
trust="true"
verbose="true"
failonerror="true"
/>
</target>
在 to_run 脚本中,我有两个变量:
#!/bin/bash
name="Pink Panther"
export name2="Panther Pink"
echo "Name: "
echo $name
echo "Name with export: "
echo $name2
如果我在终端上运行脚本,我会得到以下输出:
$ ./to_run.sh
Name:
Pink Panther
Name with export:
Panther Pink
我们可以看到一切正常。但是,如果我从 ant 启动 build.xml 脚本,我会得到以下输出:
...
[sshexec] Authentication succeeded (password).
[sshexec] cmd : #!/bin/bash
[sshexec] cmd :
[sshexec] cmd : name="Pink Panther"
[sshexec] cmd : export name2="Panther Pink"
[sshexec] cmd :
[sshexec] cmd : echo "Name: "
[sshexec] Name:
[sshexec] cmd : echo $name
[sshexec]
[sshexec] cmd : echo "Name with export: "
[sshexec] Name with export:
[sshexec] cmd : echo $name2
[sshexec]
[sshexec] Disconnecting from ...
我们可以看到在远程服务器上这个脚本创建了一个空的回显。变量名和name2没有填写。为什么?