GCP
From My Wiki
Install GCloud on Cygwin / MobaXterm
curl https://sdk.cloud.google.com | bash
Get all instances from all projects
for i in `gcloud projects list --format json|jq '.[].projectId'|xargs`; do gcloud compute instances list --project=$i --format="csv[no-heading](name,machineType,cpuPlatform)"|sed "s/^/$i,/"; done