mirror of
https://github.com/gryf/vboxmanage-bash-completion.git
synced 2025-12-17 11:30:23 +01:00
Added getextradata command
This commit is contained in:
1
README
1
README
@@ -21,6 +21,7 @@ Current version of script was written and tested against VBoxManage in version
|
||||
- discardstate
|
||||
- export
|
||||
- extpack
|
||||
- getextradata
|
||||
- list
|
||||
- showhdinfo
|
||||
- showvminfo
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
#
|
||||
# [1] Sebastian T. Hafner <sonix@own-hero.net>
|
||||
#
|
||||
# [ ] getextradata
|
||||
# [ ] guestcontrol
|
||||
# [ ] guestproperty
|
||||
# [ ] hostonlyif
|
||||
@@ -816,6 +815,13 @@ _VBoxManage() {
|
||||
fi
|
||||
;;
|
||||
getextradata)
|
||||
if [[ ${prev} == ${cmd} ]]; then
|
||||
COMPREPLY=( $(compgen -W "global" -- ${cur}) )
|
||||
_vms_comp vms ${cur}
|
||||
else
|
||||
_get_excluded_items "enumerate"
|
||||
COMPREPLY=( $(compgen -W "$result" -- ${cur}) )
|
||||
fi
|
||||
;;
|
||||
guestcontrol)
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user