請提出一些解決方案。通常我使用其他計算機進行一些計算,然後在需要將數據從該計算機傳輸到本地主機時進行計算。這次我想從本地機器發送一些輸入到遠程機器,遠程機器將完成它的位,然後將其輸出。我怎樣才能使這個過程自動化,以便重複我在本地機器上指定的次數?這很複雜嗎?如果我沒有提供足夠的細節,請告訴我。在網絡上傳輸數據
這是手動過程。
ssh [email protected] !ssh to remote machine
program.o input.dat !supply input to the program
sftp [email protected] !ftp to remote machine from another terminal
get output.dat !output.dat was produced by program.o
!open an other terminal
another_prog.o output.dat !run another program on my local machine
!Then repeat. Some times I may compile using a make file.
我想自動執行此過程。我有什麼選擇。這些程序是用C++/c,fortran等許多語言編寫的。我是一個好的程序員,但我從未有過的情況下,我不得不做上面,所以教我:)
我的兩個本地和遠程機器的Linux/Ubuntu的