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
|
- discardstate
|
||||||
- export
|
- export
|
||||||
- extpack
|
- extpack
|
||||||
|
- getextradata
|
||||||
- list
|
- list
|
||||||
- showhdinfo
|
- showhdinfo
|
||||||
- showvminfo
|
- showvminfo
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
#
|
#
|
||||||
# [1] Sebastian T. Hafner <sonix@own-hero.net>
|
# [1] Sebastian T. Hafner <sonix@own-hero.net>
|
||||||
#
|
#
|
||||||
# [ ] getextradata
|
|
||||||
# [ ] guestcontrol
|
# [ ] guestcontrol
|
||||||
# [ ] guestproperty
|
# [ ] guestproperty
|
||||||
# [ ] hostonlyif
|
# [ ] hostonlyif
|
||||||
@@ -816,6 +815,13 @@ _VBoxManage() {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
getextradata)
|
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)
|
guestcontrol)
|
||||||
;;
|
;;
|
||||||
|
|||||||
Reference in New Issue
Block a user