在 CommandLine(Windows 终端)中有多个参数

Have multiple arguments in CommandLine (Windows Terminal)

我想在 Windows 终端 中设置我的个人资料,使其通过 ssh 自动连接到 server1并使用 server1 连接到 server2.

当我连接到单个 server1 机器时一切正常,但不确定如何启动第二个命令。

在settings.json->“配置文件”->“列表”- “命令行”:“ssh -i”mykey.pem”ubuntu@server1”

"命令行": "ssh -i "mykey.pem" ubuntu@server1 && ssh -i "mykey.pem" ubuntu@server2"

感谢 https://unix.stackexchange.com/questions/41493/how-to-ssh-to-a-server-using-another-server

找到了解决方案
ssh -t $SERVER_A ssh $SERVER_B

完成任务