根据文档,我正在尝试使用gcloud compute ssh
param将其他标记传递给--ssh-flag
,如下所示:
gcloud compute ssh instance-name --ssh-flag="-t tmux a"
我收到以下错误:
/ usr / bin / ssh:非法选项 -
有什么想法吗?
我仔细检查了语法,它看起来与文档中提供的示例相同。与此同时,我可以使用实际的ssh
来调用上面的命令。
答案 0 :(得分:0)
您可以使用--dry-run查看ssh命令gcloud compute ssh
实际调用的内容。然后你可以复制&粘贴该命令并添加所需的其他标志。
答案 1 :(得分:0)
另一个答案:运行gcloud components update
更新gcloud。最新版本是96.0.0,并且很可能--ssh-flag是新增功能。