pinebook/u-boot/uboot-bash-completion

13 lines
289 B
Bash

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