我正在尝试实现我的输出,如果它是一行,它会被写在一个变量中
这就是我到目前为止所拥有的
az group list --query '[].{name:name}' --output table
$filter = Read-Host -Prompt "Please filter to find the correct resource group"
az group list --query "[?contains(name, '$filter')].name" --output tsv
此代码的作用是您可以过滤所有资源组,然后您可以看到 TSV 中的输出
我要添加的是它检查它是否是唯一的行,然后写掉那行(如果它是一行)