Azure CLI 2.0에서 원하는 명령어 찾기


Linux에 Azure CLI 2.0을 설치한 후에 Azure Login한다
그런 다음 원하는 명령어를 실행하려고 하는데 제대로 기억나지 않을 때 az find -q “string”을 사용하면 된다

list에 대한 정보를 보고자 하면 az find -q “list”
이 결과로서 az group list, az network nic list 등을 알게 된다

결과를 볼 때는 -o table로 보거나 | grep “string”을 사용하면 편리하다
az group list -o table
az group list | grep name
az network nic list -o table

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s