13 lines
293 B
Plaintext
13 lines
293 B
Plaintext
_i2prouter-nowrapper()
|
|
{
|
|
local cur prev opts
|
|
_init_completion || return
|
|
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
opts=""
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
}
|
|
complete -F _i2prouter-nowrapper i2prouter-nowrapper
|