tiup completion

To reduce user costs, TiUP provides the tiup completion command to generate a configuration file for automatic command-line completion. Currently, TiUP supports completing bash and zsh commands.

If you want to complete bash commands, you need to install bash-completion first. See the following instructions:

  • On macOS: If your bash version is earlier than 4.1, run brew install bash-completion; otherwise, run brew install bash-completion@2.
  • On Linux: Use a package manager to install bash-completion. For example, run yum install bash-completion or apt install bash-completion.

Syntax

  1. tiup completion <shell>

<shell> is used to set the type of shell you use. Currently, bash and zsh are supported.

Usage

bash

Write the tiup completion bash command into a file and source the file in .bash_profile. See the following example:

  1. tiup completion bash > ~/.tiup.completion.bash
  2. printf "
  3. # tiup shell completion
  4. source '$HOME/.tiup.completion.bash'
  5. " >> $HOME/.bash_profile
  6. source $HOME/.bash_profile

zsh

  1. tiup completion zsh > "${fpath[1]}/_tiup"

<< Back to the previous page - TiUP Reference command list