Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for COMPREPLY (0.07 sec)

  1. pkg/collateral/control.go

    }
    __istio_ltrim_colon_completions()
    {
    	if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then
    		# Remove colon-word prefix from COMPREPLY items
    		local colon_word=${1%${1##*:}}
    		local i=${#COMPREPLY[*]}
    		while [[ $((--i)) -ge 0 ]]; do
    			COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
    		done
    	fi
    }
    __istio_get_comp_words_by_ref() {
    	cur="${COMP_WORDS[COMP_CWORD]}"
    	prev="${COMP_WORDS[${COMP_CWORD}-1]}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top