This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_gvm_complete() | |
{ | |
local CANDIDATES | |
local CANDIDATE_VERSIONS | |
COMPREPLY=() | |
if [ $COMP_CWORD -eq 1 ]; then | |
COMPREPLY=( $(compgen -W "install uninstall rm list ls use current version default selfupdate broadcast offline help flush" -- ${COMP_WORDS[COMP_CWORD]}) ) | |
elif [ $COMP_CWORD -eq 2 ]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Configuration { | |
File getSourcePath(); | |
void setSourcePath(File path); | |
File getTemplatePath(); | |
void setTemplatePath(File path); | |
File getDestinationPath(); | |
void setDestinationPath(File path); | |