plink 從 putty 的預設連線中取得連線主機

plink 從 putty 的預設連線中取得連線主機

以下命令對我有用的唯一方法是當 Putty 保存的預設連線未定義主機參數時。

 plink -l user -pw password myhost command

結果是:

myhost: Command not found.

相反,我需要輸入的是:

plink -l user -pw password command

主機取自putty的預設連線。

有辦法解決這個問題嗎?我想要 putty 中的預設連接,但我也希望能夠為 plink 指定我自己的主機。

答案1

我遇到了同樣的問題,這對我有用:

plink -load null host -l user -pw password 

其中“null”是不存在的會話。

相關內容