There was an error while loading. Please reload this page.
It is possible to enable Terminal completion for chkit
chkit
For Ubuntu:
Open .bashrc
.bashrc
$ nano ~/.bashrc
and make changes as follows:
source <(chkit genautocomplete)
For MacOs:
Install brew, the missing package manager for macOS:
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Install an additional bash-completion package with brew:
$ brew install bash-completion
Open .bash_profile
.bash_profile
$ nano ~/.bash_profile
if [ -f $(brew --prefix)/etc/bash_completion ]; then . $(brew --prefix)/etc/bash_completion fi source <(chkit genautocomplete)