Linux

如何編寫一個shell腳本來執行多個程序

  • April 15, 2015

我想執行兩個程序

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:

確保遙控器上的路徑正確。大多數腳本不在 /home 下

引用自:https://unix.stackexchange.com/questions/196289