blob: 7fd22bfe80fc301c1c0e9be644ca048d11d0fce0 (
plain)
1
2
3
4
5
6
7
8
|
_cum_completion() {
COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \
COMP_CWORD=$COMP_CWORD \
_CUM_COMPLETE=complete $1 ) )
return 0
}
complete -F _cum_completion -o default cum;
|