13 lines
278 B
Plaintext
13 lines
278 B
Plaintext
|
# bash uboot completion -*- shell-script -*-
|
||
|
|
||
|
_uboot()
|
||
|
{
|
||
|
local cur prev words cword
|
||
|
_init_completion || return
|
||
|
|
||
|
COMPREPLY=( $( compgen -W "branches build flash clean" -- "$cur" ) )
|
||
|
} &&
|
||
|
complete -F _uboot uboot
|
||
|
|
||
|
# ex: filetype=sh
|