## Prerequisites - `bash-completion` ## Install Download completion scripts and put them in the following directory. ```bash mkdir -p ~/.local/share/bash-completion/completions ``` Enable bash-completion (if not globally enabled): ```bash # ~/.bashrc if [ -f /etc/bash_completion ] && ! shopt -oq posix; then . /etc/bash_completion fi ```