mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* lnms bash completion Initial version * fix style * Refactor for readability Include default options for all commands * fix php5.6 always show - options
8 lines
195 B
Bash
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
|