mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-31 12:34:33 -04:00
12 lines
202 B
Bash
12 lines
202 B
Bash
#!/bin/bash
|
|
|
|
projects=$(gcloud projects list | tail -n +2 | awk '{ print $1}')
|
|
|
|
list_app () {
|
|
gcloud app services list --project $1 2>&1 | grep -v ERROR
|
|
}
|
|
|
|
for x in $projects;
|
|
do
|
|
list_app $x
|
|
done
|