If you’re OK with `jq`… ``` ▶ p stack ls --json |...
# general
i
If you’re OK with `jq`…
Copy code
▶ p stack ls --json | jq '.[] | select(.current == true) | .name'
"webs"
👍 1
c
alternative:
pulumi stack ls | grep '*' | cut -d ' ' -f1 | tr -d '*'
👍 1