Enable autocompletion for the Stripe CLI
Let the Stripe CLI automatically complete your commands.
Use the stripe completion
command to enable autocompletion in MacOs and Linux. After you enable autocomplete, you can type a command and press the tab key to view available commands and flags. Windows autocompletion is currently not supported.
Use Zsh to set up autocompletion 
Open a new ZSH shell and run the following commands:
Command Line
stripe completion mkdir -p ~/.stripe mv stripe-completion.zsh ~/.stripe
Add the following lines to your .
file:
Command Line
# The next lines enables shell command completion for Stripe fpath=(~/.stripe $fpath) autoload -Uz compinit && compinit -i
Use Bash to set up autocompletion 
Follow the instructions in bash-completion to set up bash completions. Open a new Bash shell and run the following commands:
Command Line
stripe completion mkdir -p ~/.stripe mv stripe-completion.bash ~/.stripe
Add the following lines to your .
file:
Command Line
# The next line enables shell command completion for Stripe source ~/.stripe/stripe-completion.bash