From 9b7ab10421a5f8ccc32c6dd142c23403d7d49ac4 Mon Sep 17 00:00:00 2001 From: gryf Date: Sat, 7 Oct 2017 19:28:22 +0200 Subject: [PATCH] Command modifymedium have now additional option --move --- VBoxManage | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/VBoxManage b/VBoxManage index 4d2d20c..c5e6059 100644 --- a/VBoxManage +++ b/VBoxManage @@ -1495,7 +1495,8 @@ _VBoxManage() { ;; *) _find_item_name 2 - items=(--type --autoreset --property --compact --resize) + items=(--type --autoreset --property --compact --resize + --move) _get_excluded_items "${items[@]}" COMPREPLY=( $(compgen -W "$result" -- ${cur}) ) case "${prev}" in @@ -1507,6 +1508,9 @@ _VBoxManage() { --autoreset) COMPREPLY=( $(compgen -W "on off" -- ${cur}) ) ;; + --move) + COMPREPLY=( $(compgen -o dirnames -- ${cur}) ) + ;; esac ;; esac