基本上我想写一些脚本,比如
#!/bin/bash
for idx in 1 2 3 4 5 6
do
echo machine$idx
ssh machine$idx tmux new-session -d -s "myTempSession$idx" python run.py
done
它可以单独做这件事:
ssh machine$idx
tmux new-session -d -s "myTempSession$idx"
python run.py
但经过多次反复试验,我仍然无法使其按预期工作。
根据Tagwint的建议进行更新,我的脚本是:
#!/bin/bash
for idx in 1 2 3 4 5 6
do
ssh machine$idx <<REMSH
tmux new-session -d -s "myTempSession"
tmux send-keys -t -s "myTempSession" python Space run.py C-m
REMSH
done
但它提示:
./dist_run.sh: line 8: warning: here-document at line 4 delimited by end-of-file (wanted `REMSH')
./dist_run.sh: line 9: syntax error: unexpected end of file
更新我将其修改为
#!/bin/bash
for idx in 36 37
do
ssh machine$idx <<REMSH
tmux new-session -d -s "myTempSession"
tmux send-keys -t -s "myTempSession" python Space run.py C-m
REMSH
done
这行得通,但是在运行脚本后,我登录machine36
并machine37
进入打开的 myTempSession,python run.py
没有执行