mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
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
|