2016-04-02 108 views

回答

2

您可以使用scp通過ssh複製文件:

scp local_file remote_machine:/target/location 

您也可以運行命令目錄雖然SSH:

ssh remote_machine 'echo 1 > remote_file' 

甚至管到ssh然後繼續遠程:

cat local_file | ssh remote_machine 'cat > remote_file' 
+0

忘了告訴,有時我使用Windows,有時是Linux,這個命令與兩個操作系統相關? – Moshe9362

+1

第一和第二應該適用於Windows和Linux – andlrc