我想在远程机器中执行shell脚本,我使用下面的命令
实现了这一点ssh user@remote_machine "bash -s" < /usr/test.sh
shell脚本在远程计算机中正确执行。现在我在脚本中进行了一些更改,以从配置文件中获取一些值。该脚本包含以下行,
#!bin/bash
source /usr/property.config
echo "testName"
property.config:
testName=xxx
testPwd=yyy
现在如果我在远程机器上运行shell脚本,我没有收到这样的文件错误,因为/usr/property.config在远程机器中不可用。
如何将配置文件与要在远程计算机上执行的shell脚本一起传递?
答案 0 :(得分:5)
只有这样您可以引用您创建的config
文件,并且仍然运行您的脚本,您需要将配置文件放在所需的路径上,有两种方法可以执行此操作。
如果config
几乎总是被修复而您无需更改它,请在您需要运行脚本的主机上本地config
,然后将绝对路径设置为脚本中的config
文件,并确保运行该脚本的用户有权访问它。
如果每次要运行该脚本时都需要发送配置文件,那么在发送和调用脚本之前,可能只需scp
该文件。
scp property.config user@remote_machine:/usr/property.config
ssh user@remote_machine "bash -s" < /usr/test.sh
修改强>
根据要求,如果你想在一行中强行执行,这就是它的完成方式:
property.config
testName=xxx
testPwd=yyy
test.sh
#!bin/bash
#do not use this line source /usr/property.config
echo "$testName"
现在你可以像John建议的那样运行你的命令:
ssh user@remote_machine "bash -s" < <(cat /usr/property.config /usr/test.sh)
答案 1 :(得分:3)
试试这个:
ssh user@remote_machine "bash -s" < <(cat /usr/property.config /usr/test.sh)
然后你的脚本不应该在内部提供配置。
第二个选项,如果您需要传递的只是环境变量:
此处描述了一些技巧:https://superuser.com/questions/48783/how-can-i-pass-an-environment-variable-through-an-ssh-command
我最喜欢的一个也许是最简单的:
ssh user@remote_machine VAR1=val1 VAR2=val2 bash -s < /usr/test.sh
这当然意味着您需要从本地配置文件中构建环境变量赋值,但希望这很简单。