そこには2つのファイルがあります。 SSHポート接続でcmds.txt cmdを実行したいと思います。 Puttyを使用してtxtファイルを実行する方法
これがsv.bat(バッチファイル)であると仮定すると
バッチファイル内にcmdsを含むtxtファイルがあります。
start C:\USERS\putty\putty.exe -ssh 10.15.12.12 -m C:\USERS\cmds.txt
cmds.txt
login
password
答え1
txtファイルを作成したら、次のものを作成する必要があります。バットファイルを保存するか、CMDプロンプトで次のように入力します。
ssh.cmd
@echo on
[何が起こったのか見て]- [PuTTYのインストールに進みます。 ]
cd C:\Program Files\Putty
- スタート
putty.exe -ssh [domain name] -l [username] -pw [password] -m [the directory of the .txt file you created which contains the codes you want to be executed]
-m
オプションが機能しない場合は、代わりに(PuTTYバックエンドのコマンドラインインターフェイス)を使用する必要がありますplink.exe
。putty.exe
-m file read remote command(s) from file
あなたから始めますPuTTYダウンロードページ