20 Commits

Author SHA1 Message Date
cd90fc60bd Bump to version 7.0.20 2024-10-07 11:16:01 +02:00
28553da42d Bump to version 7.0.14 2024-04-30 10:12:27 +02:00
3efab392c1 Bump to 7.0.12 2024-02-12 21:17:24 +01:00
b0352554bb Merge pull request #14 from mattalexx/patch-1
Use `grep -E` instead of `egrep` to suppress warnings
2024-02-12 21:15:01 +01:00
Matt Alexander
95088850b6 Use grep -E instead of egrep to suppress warnings
The messages were getting in the way:
```
 $ VBoxManage createvm --name=Win10-3 --ostype Wegrep: warning: egrep is obsolescent; using grep -E
indowsegrep: warning: egrep is obsolescent; using grep -E
egrep: warning: egrep is obsolescent; using grep -E

Windows10        Windows2000      Windows2008      Windows2016_64   Windows31        Windows8         Windows8_64      WindowsMe        WindowsNT4       WindowsVista_64
Windows10_64     Windows2003      Windows2008_64   Windows2019_64   Windows7         Windows81        Windows95        WindowsNT        WindowsNT_64     WindowsXP
Windows11_64     Windows2003_64   Windows2012_64   Windows2022_64   Windows7_64      Windows81_64     Windows98        WindowsNT3x      WindowsVista     WindowsXP_64
matt@q ~ $ VBoxManage createvm --name=Win10-3 --ostype Windowsegrep: warning: egrep is obsolescent; using grep -E

Windows10        Windows2000      Windows2008      Windows2016_64   Windows31        Windows8         Windows8_64      WindowsMe        WindowsNT4       WindowsVista_64
Windows10_64     Windows2003      Windows2008_64   Windows2019_64   Windows7         Windows81        Windows95        WindowsNT        WindowsNT_64     WindowsXP
Windows11_64     Windows2003_64   Windows2012_64   Windows2022_64   Windows7_64      Windows81_64     Windows98        WindowsNT3x      WindowsVista     WindowsXP_64
```
2024-02-12 05:06:39 -06:00
3404afa441 Added support for other names than vboxmanage.
Currently the completion script will be available for commands:
VBoxManage and vboxmanage. With this commit, renaming/linking this
script with another name will also make that name to be included to
completion.

For example, with alias:

    $ alias vb="VBoxManage"

linkig completion script into new name an source it:

    $ cd /path/of/completion/script/
    $ ln -s VBoxManage vb
    # source vb

will start to complete vb command.
2023-11-02 18:14:29 +01:00
ab6d9f7cd9 Added missing completions for cloud related commands.
Also, removed trailing spaces.
2023-11-02 18:11:41 +01:00
3bb795a1e3 Bump to 7.0.10 2023-09-11 10:30:29 +02:00
468a0a4c32 Bump to 7.0.8 2023-06-23 18:26:15 +02:00
59ffe61fd6 Bump to 7.0.6 2023-03-20 12:43:40 +01:00
7c13b0ab6b Bump to version 7.0.4 2023-03-20 12:36:51 +01:00
67ac4d655f Updated natnetwork command 2023-03-20 11:33:21 +01:00
8dd76f3295 Fix typos with COMP_CWORD varialble 2023-03-19 18:55:25 +01:00
8fd579c2cd Updated convertfromraw command 2023-03-19 18:41:01 +01:00
51a393f8fe Updated mediumproperty command 2023-03-19 17:17:20 +01:00
f23ce2aedb Update clonemedium command 2023-03-19 17:13:36 +01:00
350e0aedaf Update createmedium command 2023-03-19 16:40:01 +01:00
25d7fb4048 Update bandwithctl command 2023-03-19 16:36:37 +01:00
0077621f1b Update storagectl command 2023-03-19 16:34:40 +01:00
52aa7111fa Update storageattach command 2023-03-19 16:27:42 +01:00
2 changed files with 228 additions and 328 deletions

View File

@@ -6,7 +6,7 @@ script. However, in some point of time I've decided to rewrite it almost from
scratch.
Current version of script was written and tested against VBoxManage in version
6.1.38, and should contain all commands and their options.
7.0.20, and should contain all commands and their options.
Unlike other attempts, I've tried to make the script context aware. See the
simple session with the VBoxManage command below, to have an idea how it works:

File diff suppressed because it is too large Load Diff