Well came up with this command but wondering if th...
# general
f
Well came up with this command but wondering if there is a built in way.
pulumi stack ls | grep "*" | awk '{print $1}' | sed 's/\*//g'
a
maybe a bit more structured:
Copy code
pulumi stack ls -j | jq '.[] | select(.current== true).name'