10 lines
182 B
Bash
10 lines
182 B
Bash
#!/bin/bash
|
|
|
|
_7D2D_manage_completions()
|
|
{
|
|
COMPREPLY=($(compgen -W "backup install kill list start update" "${COMP_WORDS[1]}"))
|
|
}
|
|
|
|
complete -F _7D2D_manage_completions 7D2D-Manage
|
|
|