tiup completion

为了降低使用成本,TiUP 提供了 tiup completion 命令用于生成命令行自动补全的配置文件。目前支持 bashzsh 两种 shell 的命令补全。

如果是 bash,需要提前安装好 bash-completion:

  • 在 macOS 上的安装方式为:如果 bash 版本小于 4.1,执行 brew install bash-completion;如果 bash 版本大于等于 4.1,则执行 brew install bash-completion@2
  • 在 Linux 上的安装方式为:使用包管理器安装 bash-completion 包,例如执行 yum install bash-completion 或者 apt install bash-completion

语法

  1. tiup completion <shell>

<shell> 为 shell 类型,目前支持 bashzsh

使用方式

bash

将自动补全代码写入一个文件,并且在 .bash_profile 中对其执行 source 命令:

  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"

<< 返回上一页 - TiUP 命令清单