使用 SSH 启动脚本

使用 SSH 启动脚本

情况1:

./Myscript.sh param   (on a first node)

另一个节点:(我并行运行相同的脚本)

./Myscript.sh param   (on a second node)

案例2:

从我的主机,使用 ssh:

for i in $(seq $nb_lignes)

 do
    machine=`head $1 -n $i | tail -1`
    echo "[Node is ] "
    echo $machine

    ssh root@$machine -x "./Myscript.sh param"  &

done

我想知道这两种情况有什么区别?非常感谢您的解释。谢谢。

相关内容