librenms/misc/lnms-completion.bash
Tony Murray dc6ff2a323
lnms bash completion (#9747)
* lnms bash completion
Initial version

* fix style

* Refactor for readability
Include default options for all commands

* fix php5.6
always show - options
2019-01-28 08:45:47 -06:00

8 lines
195 B
Bash

#!/usr/bin/env bash
_lnms_completion()
{
COMPREPLY=(`COMP_CURRENT="${2}" COMP_PREVIOUS="${3}" COMP_LINE="${COMP_LINE}" lnms list:bash-completion`)
return $?
}
complete -F _lnms_completion lnms