mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-10 10:44:59 -04:00
7 lines
132 B
Bash
Executable file
7 lines
132 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for x in $(gcloud projects list | tail -n +2 | awk '{ print $1}');
|
|
do
|
|
gcloud sql instances list --project $x
|
|
done
|
|
|