shell脚本没有等待(Shell script not waiting)

2019-09-30 08:05发布

 ssh user@myserver.com<<EOF
    cd ../../my/path/
    sh runscript.sh
    wait
    cd ../../temp/path
    sh secondscript.sh
 EOF

第一个脚本运行,并问我在脚本中的问题,但我竟然能开始输入回答他们之前,第二个脚本开始运行。 从我读什么,这不应该发生的事情,即使没有等待。

文章来源: Shell script not waiting
标签: shell wait