EasyEngine comes with a tab completion script for Bash and ZSH.
To add it, run the following command:
wget -qO ~/.ee-completion.bash https://raw.githubusercontent.com/EasyEngine/easyengine/develop-v4/utils/ee-completion.bash
If you use bash, run:
echo 'source ~/.ee-completion.bash' >> ~/.bash_profile
source ~/.ee-completion.bash
If you use zsh, run:
cat <<EOF >> ~/.zshrc
autoload bashcompinit
bashcompinit
source ~/.ee-completion.bash
EOF
source ~/.zshrc
