mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 11:36:51 +00:00
add vendoring with go dep
This commit is contained in:
43
vendor/github.com/vmware/govmomi/scripts/govc_bash_completion
generated
vendored
Normal file
43
vendor/github.com/vmware/govmomi/scripts/govc_bash_completion
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
#!/bin/bash
|
||||
|
||||
# govc Bash completion script
|
||||
# place in etc/bash_completion.d/ or source on command line with "."
|
||||
|
||||
_govc_complete()
|
||||
{
|
||||
local cur prev subcmd
|
||||
prev=${COMP_WORDS[COMP_CWORD-1]}
|
||||
cur=${COMP_WORDS[COMP_CWORD]}
|
||||
subcmd=${COMP_WORDS[1]}
|
||||
COMPREPLY=()
|
||||
|
||||
if [[ ${prev} == "govc" ]] ; then # show subcommands, no options
|
||||
COMPREPLY=( $(compgen -W "$(govc -h | grep -v Usage | tr -s '\n' ' ')" -- ${cur}) )
|
||||
return 0
|
||||
|
||||
elif [[ ${cur} == "-"* ]] ; then
|
||||
: # drop out and show options
|
||||
|
||||
elif [[ ${subcmd} == "ls" ]] ; then # not completing an option, try for appropriate values
|
||||
if [[ ${prev} == "-t" ]] ; then
|
||||
COMPREPLY=( $(compgen -W "$(govc ls -l "/**" | awk '{print $2}' | \
|
||||
sort -u | tr -d '()' | tr '\n' ' ' )" -- ${cur}) )
|
||||
else
|
||||
COMPREPLY=( $(compgen -W "$(govc ls "${cur:-/*}*" | tr -s '\n' ' ' )" -- ${cur}) )
|
||||
fi
|
||||
|
||||
elif [[ ${subcmd} == "vm."* || ${prev} == "-vm" ]] ; then
|
||||
COMPREPLY=( $(compgen -W "$(govc ls -t VirtualMachine -l "${cur}*" | \
|
||||
awk '{print $1}' | tr -s '\n' ' ' )" -- ${cur}) )
|
||||
fi
|
||||
|
||||
# did not hit any specifcs so show all options from help
|
||||
if [[ -z ${COMPREPLY} ]]; then
|
||||
COMPREPLY=( $(compgen -W "-h $(govc ${subcmd} -h | awk '{print $1}' | \
|
||||
grep "^-" | sed -e 's/=.*//g' | tr -s '\n' ' ' )" -- ${cur}) )
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
complete -F _govc_complete govc
|
||||
|
||||
Reference in New Issue
Block a user