1

我对 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没有填写。为什么?

4

1 回答 1

3

更改此行:

commandResource="${basedir}/to_run.sh" 

command="${basedir}/to_run.sh" 

结果如下:

[sshexec] Authentication succeeded (password).
[sshexec] cmd : /data/tmp/anttest/to_run.sh
[sshexec] Name:
[sshexec] Pink Panther
[sshexec] Name with export:
[sshexec] Panther Pink

commandResource获取一个包含命令列表的资源文件并单独执行每一行,bash -c $LINE因此定义的任何变量仅在同一行上有效。command在同一个 shell 中执行整个脚本。

于 2012-12-28T02:12:03.197 回答