Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 584 Bytes

linux-completion.md

File metadata and controls

20 lines (16 loc) · 584 Bytes
author ms.author ms.date ms.topic
bebound
hanglei
11/29/2024
include

Completion isn't working

For Bash users, the completion script is installed in /etc/bash_completion.d/azure-cli. If it is not automatically executed, add the following line to your ~/.bashrc file, then save and reload your Bash profile:

source /etc/bash_completion.d/azure-cli

For Zsh users, add the following two lines in your ~/.zshrc file, then save and reload your Zsh profile:

autoload -U +X bashcompinit && bashcompinit
source /etc/bash_completion.d/azure-cli