Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BASH_COMPLETION_EOF (0.15 sec)

  1. cmd/kubeadm/app/cmd/completion.go

    	-e "s/\\\$(type${RWORD}/\$(__kubeadm_type/g" \
    	<<'BASH_COMPLETION_EOF'
    `
    	klog.V(1).Infoln("[completion] writing completion code for Zsh")
    	out.Write([]byte(zshInitialization))
    
    	buf := new(bytes.Buffer)
    	kubeadm.GenBashCompletion(buf)
    	klog.V(1).Infoln("[completion] writing completion code for Bash")
    	out.Write(buf.Bytes())
    
    	zshTail := `
    BASH_COMPLETION_EOF
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. pkg/collateral/control.go

    	-e "s/${LWORD}compopt${RWORD}/__istio_compopt/g" \
    	-e "s/${LWORD}declare${RWORD}/builtin declare/g" \
    	-e "s/\\\$(type${RWORD}/\$(__istio_type/g" \
    	<<'BASH_COMPLETION_EOF'
    `
    
    		zshTail := `
    BASH_COMPLETION_EOF
    }
    
    __istio_bash_source <(__istio_convert_bash_to_zsh)
    _complete istio 2>/dev/null
    `
    
    		// Create the output file.
    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