#!/bin/bash _7D2D_manage_completions() { if [ "${#COMP_WORDS[@]}" != "2" ]; then return fi COMPREPLY=($(compgen -W "backup install kill list start update view" "${COMP_WORDS[1]}")) } complete -F _7D2D_manage_completions 7D2D-Manage