如何使用ssh连接执行bash

时间:2012-11-30 16:40:14

标签: bash unix ssh

我正在尝试编写一个bash脚本来自动在网络中的客户端机器上执行操作。但是在代码之后

ssh -i ~/.ssh/key root@machine

bash程序停止了 如何将命令发送到远程计算机? 感谢

1 个答案:

答案 0 :(得分:3)

就像你直接调用bash一样。

ssh ... somescriptontheserver.sh

ssh ... ls -lR /

ssh ... << EOF
ls -lR /
EOF