如何编写shell脚本来运行多个程序

如何编写shell脚本来运行多个程序

我想运行两个程序

ssh -f mike@c15-0330-02 'cd /home && nohup Rscript L_1.R> L_1_sh.txt '

ssh -f mike@c15-0330-03 'cd /home && nohup Rscript L_2.R> L_2_sh.txt '

我写了一个shell脚本

ssh -f mike@c15-0330-02 'cd /home && nohup Rscript L_1.R> L_1_sh.txt ' &
ssh -f mike@c15-0330-03 'cd /home && nohup Rscript L_2.R> L_2_sh.txt ' &

但总是显示

: command not found:
: command not found:
: command not found:

答案1

确保遥控器上的路径正确。大多数脚本不在 /home 下

相关内容