Resolves feature request #29
Using the completions command
# Create completions dir if not already
mkdir -p ~/.local/share/bash-completion/completions/
# Generate bash completion script
bake completions bash
# Save bash completion to file
bake completions bash > ~/.local/share/bash-completion/completions/bakeManual Installation
# Source the completion script
source <(bake completions bash)
# Or save to a file and source it
bake completions bash > ~/.bash_completion.d/bake
echo "source ~/.bash_completion.d/bake" >> ~/.bashrc