Azure CLI: Set subscription with `fzf`
Created on September 7, 2026
terminal
List all your subscriptions, pipe them into fuzzy finder, and then set your subscription.
az account set --subscription "$( \
az account list --query '[].name' -o tsv \
| fzf \
)"