如何使用 PuTTY 一键打开 1000 多个 SSH 会话?
How to open more than 1000 SSH sessions at one click using PuTTY?
我想在 Windows10 中使用 PuTTY 从远程服务器打开 1000 个 SSH 会话用于测试目的。如何轻松做到这一点?
您可以使用这样的批处理文件:
for /l %%N in (1 1 1000) do putty.exe -load "your session"
基于:How to execute one line multiple times using windows batch file?
我想在 Windows10 中使用 PuTTY 从远程服务器打开 1000 个 SSH 会话用于测试目的。如何轻松做到这一点?
您可以使用这样的批处理文件:
for /l %%N in (1 1 1000) do putty.exe -load "your session"
基于:How to execute one line multiple times using windows batch file?