VirtualBox

Changeset 42460 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jul 30, 2012 8:37:10 PM (12 years ago)
Author:
vboxsync
Message:

VBoxManage: polished help

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h

    r42444 r42460  
    183183
    184184/* VBoxManageGuestProp.cpp */
    185 extern void usageGuestProperty(PRTSTREAM pStrm);
     185extern void usageGuestProperty(PRTSTREAM pStrm, const char *pcszSep1, const char *pcszSep2);
    186186
    187187/* VBoxManageGuestCtrl.cpp */
    188 extern void usageGuestControl(PRTSTREAM pStrm);
     188extern void usageGuestControl(PRTSTREAM pStrm, const char *pcszSep1, const char *pcszSep2);
    189189
    190190#ifndef VBOX_ONLY_DOCS
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp

    r42445 r42460  
    218218#endif /* VBOX_ONLY_DOCS */
    219219
    220 void usageGuestControl(PRTSTREAM pStrm)
     220void usageGuestControl(PRTSTREAM pStrm, const char *pcszSep1, const char *pcszSep2)
    221221{
    222222    RTStrmPrintf(pStrm,
    223                  "VBoxManage guestcontrol     <vmname>|<uuid>\n"
     223                       "%s guestcontrol %s    <vmname>|<uuid>\n"
    224224                 "                            exec[ute]\n"
    225225                 "                            --image <path to program> --username <name>\n"
     
    255255                 "                            updateadditions\n"
    256256                 "                            [--source <guest additions .ISO>] [--verbose]\n"
    257                  "\n");
     257                 "\n", pcszSep1, pcszSep2);
    258258}
    259259
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestProp.cpp

    r39821 r42460  
    5353#endif /* !VBOX_ONLY_DOCS */
    5454
    55 void usageGuestProperty(PRTSTREAM pStrm)
     55void usageGuestProperty(PRTSTREAM pStrm, const char *pcszSep1, const char *pcszSep2)
    5656{
    5757    RTStrmPrintf(pStrm,
    58                  "VBoxManage guestproperty    get <vmname>|<uuid>\n"
     58                       "%s guestproperty %s   get <vmname>|<uuid>\n"
    5959                 "                            <property> [--verbose]\n"
    60                  "\n");
     60                 "\n", pcszSep1, pcszSep2);
    6161    RTStrmPrintf(pStrm,
    62                  "VBoxManage guestproperty    set <vmname>|<uuid>\n"
     62                       "%s guestproperty %s   set <vmname>|<uuid>\n"
    6363                 "                            <property> [<value> [--flags <flags>]]\n"
    64                  "\n");
     64                 "\n", pcszSep1, pcszSep2);
    6565    RTStrmPrintf(pStrm,
    66                  "VBoxManage guestproperty    enumerate <vmname>|<uuid>\n"
     66                       "%s guestproperty %s   enumerate <vmname>|<uuid>\n"
    6767                 "                            [--patterns <patterns>]\n"
    68                  "\n");
     68                 "\n", pcszSep1, pcszSep2);
    6969    RTStrmPrintf(pStrm,
    70                  "VBoxManage guestproperty    wait <vmname>|<uuid> <patterns>\n"
     70                       "%s guestproperty %s   wait <vmname>|<uuid> <patterns>\n"
    7171                 "                            [--timeout <msec>] [--fail-on-timeout]\n"
    72                  "\n");
     72                 "\n", pcszSep1, pcszSep2);
    7373}
    7474
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp

    r42445 r42460  
    9999    if (u64Cmd == USAGE_ALL)
    100100        RTStrmPrintf(pStrm,
    101                      "VBoxManage [-v|--version]          print version number and exit\n"
    102                      "VBoxManage [-q|--nologo]       ... suppress the logo\n"
    103                      "VBoxManage [--settingspw <pw>] ...\n"
    104                      "VBoxManage [--settingspwfile]  ... provide the settings password\n"
    105                      "\n");
     101                     "  VBoxManage [<general option>] <command>\n"
     102                     " \n \n"
     103                     "General Options:\n \n"
     104                     "  [-v|--version]            print version number and exit\n"
     105                     "  [-q|--nologo]             suppress the logo\n"
     106                     "  [--settingspw <pw>]       provide the settings password\n"
     107                     "  [--settingspwfile <file>] provide a file containing the settings password\n"
     108                     " \n \n"
     109                     "Commands:\n \n");
     110
     111    const char *pcszSep1 = " ";
     112    const char *pcszSep2 = "         ";
     113    if (u64Cmd != USAGE_ALL)
     114    {
     115        pcszSep1 = "VBoxManage";
     116        pcszSep2 = "";
     117    }
     118
     119#define SEP pcszSep1, pcszSep2
    106120
    107121    if (u64Cmd & USAGE_LIST)
    108122        RTStrmPrintf(pStrm,
    109                      "VBoxManage list [--long|-l] vms|runningvms|ostypes|hostdvds|hostfloppies|\n"
     123                           "%s list [--long|-l]%s vms|runningvms|ostypes|hostdvds|hostfloppies|\n"
    110124#if defined(VBOX_WITH_NETFLT)
    111125                     "                            bridgedifs|hostonlyifs|dhcpservers|hostinfo|\n"
     
    116130                     "                            usbhost|usbfilters|systemproperties|extpacks|\n"
    117131                     "                            groups\n"
    118                      "\n");
     132                     "\n", SEP);
    119133
    120134    if (u64Cmd & USAGE_SHOWVMINFO)
    121135        RTStrmPrintf(pStrm,
    122                      "VBoxManage showvminfo       <uuid>|<name> [--details]\n"
     136                           "%s showvminfo %s      <uuid>|<name> [--details]\n"
    123137                     "                            [--machinereadable]\n"
    124                      "VBoxManage showvminfo       <uuid>|<name> --log <idx>\n"
    125                      "\n");
     138                           "%s showvminfo %s      <uuid>|<name> --log <idx>\n"
     139                     "\n", SEP, SEP);
    126140
    127141    if (u64Cmd & USAGE_REGISTERVM)
    128142        RTStrmPrintf(pStrm,
    129                      "VBoxManage registervm       <filename>\n"
    130                      "\n");
     143                           "%s registervm %s      <filename>\n"
     144                     "\n", SEP);
    131145
    132146    if (u64Cmd & USAGE_UNREGISTERVM)
    133147        RTStrmPrintf(pStrm,
    134                      "VBoxManage unregistervm     <uuid>|<name> [--delete]\n"
    135                      "\n");
     148                           "%s unregistervm %s    <uuid>|<name> [--delete]\n"
     149                     "\n", SEP);
    136150
    137151    if (u64Cmd & USAGE_CREATEVM)
    138152        RTStrmPrintf(pStrm,
    139                      "VBoxManage createvm         --name <name>\n"
     153                           "%s createvm %s        --name <name>\n"
    140154                     "                            [--groups <group>, ...]\n"
    141155                     "                            [--ostype <ostype>]\n"
     
    143157                     "                            [--basefolder <path>]\n"
    144158                     "                            [--uuid <uuid>]\n"
    145                      "\n");
     159                     "\n", SEP);
    146160
    147161    if (u64Cmd & USAGE_MODIFYVM)
    148162    {
    149163        RTStrmPrintf(pStrm,
    150                      "VBoxManage modifyvm         <uuid|name>\n"
     164                           "%s modifyvm %s        <uuid|name>\n"
    151165                     "                            [--name <name>]\n"
    152166                     "                            [--groups <group>, ...]\n"
     
    255269                     "                            [--guestmemoryballoon <balloonsize in MB>]\n"
    256270                     "                            [--gueststatisticsinterval <seconds>]\n"
    257                      "                            [--audio none|null");
     271                     "                            [--audio none|null", SEP);
    258272        if (fWin)
    259273        {
     
    354368    if (u64Cmd & USAGE_CLONEVM)
    355369        RTStrmPrintf(pStrm,
    356                      "VBoxManage clonevm          <uuid>|<name>\n"
     370                           "%s clonevm %s         <uuid>|<name>\n"
    357371                     "                            [--snapshot <uuid>|<name>]\n"
    358372                     "                            [--mode machine|machineandchildren|all]\n"
     
    364378                     "                            [--uuid <uuid>]\n"
    365379                     "                            [--register]\n"
    366                      "\n");
     380                     "\n", SEP);
    367381
    368382    if (u64Cmd & USAGE_IMPORTAPPLIANCE)
    369383        RTStrmPrintf(pStrm,
    370                      "VBoxManage import           <ovf/ova>\n"
     384                           "%s import %s          <ovf/ova>\n"
    371385                     "                            [--dry-run|-n]\n"
    372386                     "                            [--options keepallmacs|keepnatmacs]\n"
    373387                     "                            [more options]\n"
    374388                     "                            (run with -n to have options displayed\n"
    375                      "                             for a particular OVF)\n\n");
     389                     "                             for a particular OVF)\n\n", SEP);
    376390
    377391    if (u64Cmd & USAGE_EXPORTAPPLIANCE)
    378392        RTStrmPrintf(pStrm,
    379                      "VBoxManage export           <machines> --output|-o <name>.<ovf/ova>\n"
     393                           "%s export %s          <machines> --output|-o <name>.<ovf/ova>\n"
    380394                     "                            [--legacy09|--ovf09|--ovf10|--ovf20]\n"
    381395                     "                            [--manifest]\n"
     
    388402                     "                                    [--eula <license text>]\n"
    389403                     "                                    [--eulafile <filename>]\n"
    390                      "\n");
     404                     "\n", SEP);
    391405
    392406    if (u64Cmd & USAGE_STARTVM)
    393407    {
    394408        RTStrmPrintf(pStrm,
    395                      "VBoxManage startvm          <uuid>|<name>...\n");
    396         RTStrmPrintf(pStrm,
    397                      "                            [--type gui");
     409                           "%s startvm %s         <uuid>|<name>...\n"
     410                     "                            [--type gui", SEP);
    398411        if (fVBoxSDL)
    399412            RTStrmPrintf(pStrm, "|sdl");
     
    406419    {
    407420        RTStrmPrintf(pStrm,
    408                      "VBoxManage controlvm        <uuid>|<name>\n"
     421                           "%s controlvm %s       <uuid>|<name>\n"
    409422                     "                            pause|resume|reset|poweroff|savestate|\n"
    410423                     "                            acpipowerbutton|acpisleepbutton|\n"
     
    451464                     "                            unplugcpu <id>\n"
    452465                     "                            cpuexecutioncap <1-100>\n"
    453                      "\n");
     466                     "\n", SEP);
    454467    }
    455468
    456469    if (u64Cmd & USAGE_DISCARDSTATE)
    457470        RTStrmPrintf(pStrm,
    458                      "VBoxManage discardstate     <uuid>|<name>\n"
    459                      "\n");
     471                           "%s discardstate %s    <uuid>|<name>\n"
     472                     "\n", SEP);
    460473
    461474    if (u64Cmd & USAGE_ADOPTSTATE)
    462475        RTStrmPrintf(pStrm,
    463                      "VBoxManage adoptstate       <uuid>|<name> <state_file>\n"
    464                      "\n");
     476                           "%s adoptstate %s      <uuid>|<name> <state_file>\n"
     477                     "\n", SEP);
    465478
    466479    if (u64Cmd & USAGE_SNAPSHOT)
    467480        RTStrmPrintf(pStrm,
    468                      "VBoxManage snapshot         <uuid>|<name>\n"
     481                           "%s snapshot %s        <uuid>|<name>\n"
    469482                     "                            take <name> [--description <desc>] [--pause] |\n"
    470483                     "                            delete <uuid>|<name> |\n"
     
    476489                     "                            list [--details|--machinereadable]\n"
    477490                     "                            showvminfo <uuid>|<name>\n"
    478                      "\n");
     491                     "\n", SEP);
    479492
    480493    if (u64Cmd & USAGE_CLOSEMEDIUM)
    481494        RTStrmPrintf(pStrm,
    482                      "VBoxManage closemedium      disk|dvd|floppy <uuid>|<filename>\n"
     495                           "%s closemedium %s     disk|dvd|floppy <uuid>|<filename>\n"
    483496                     "                            [--delete]\n"
    484                      "\n");
     497                     "\n", SEP);
    485498
    486499    if (u64Cmd & USAGE_STORAGEATTACH)
    487500        RTStrmPrintf(pStrm,
    488                      "VBoxManage storageattach    <uuid|vmname>\n"
     501                           "%s storageattach %s   <uuid|vmname>\n"
    489502                     "                            --storagectl <name>\n"
    490503                     "                            [--port <number>]\n"
     
    513526                     "                            [--initiator <initiator>]\n"
    514527                     "                            [--intnet]\n"
    515                      "\n");
     528                     "\n", SEP);
    516529
    517530    if (u64Cmd & USAGE_STORAGECONTROLLER)
    518531        RTStrmPrintf(pStrm,
    519                      "VBoxManage storagectl       <uuid|vmname>\n"
     532                           "%s storagectl %s      <uuid|vmname>\n"
    520533                     "                            --name <name>\n"
    521534                     "                            [--add ide|sata|scsi|floppy|sas]\n"
     
    527540                     "                            [--bootable on|off]\n"
    528541                     "                            [--remove]\n"
    529                      "\n");
     542                     "\n", SEP);
    530543
    531544    if (u64Cmd & USAGE_BANDWIDTHCONTROL)
    532545        RTStrmPrintf(pStrm,
    533                      "VBoxManage bandwidthctl     <uuid|vmname>\n"
     546                           "%s bandwidthctl %s    <uuid|vmname>\n"
    534547                     "                            add <name> --type disk|network\n"
    535548                     "                                --limit <megabytes per second>[k|m|g|K|M|G] |\n"
     
    540553                     "                            (limit units: k=kilobit, m=megabit, g=gigabit,\n"
    541554                     "                                          K=kilobyte, M=megabyte, G=gigabyte)\n"
    542                      "\n");
     555                     "\n", SEP);
    543556
    544557    if (u64Cmd & USAGE_SHOWHDINFO)
    545558        RTStrmPrintf(pStrm,
    546                      "VBoxManage showhdinfo       <uuid>|<filename>\n"
    547                      "\n");
     559                           "%s showhdinfo %s      <uuid>|<filename>\n"
     560                     "\n", SEP);
    548561
    549562    if (u64Cmd & USAGE_CREATEHD)
    550563        RTStrmPrintf(pStrm,
    551                      "VBoxManage createhd         --filename <filename>\n"
     564                           "%s createhd %s        --filename <filename>\n"
    552565                     "                            [--size <megabytes>|--sizebyte <bytes>]\n"
    553566                     "                            [--diffparent <uuid>|<filename>\n"
    554567                     "                            [--format VDI|VMDK|VHD] (default: VDI)\n"
    555568                     "                            [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
    556                      "\n");
     569                     "\n", SEP);
    557570
    558571    if (u64Cmd & USAGE_MODIFYHD)
    559572        RTStrmPrintf(pStrm,
    560                      "VBoxManage modifyhd         <uuid>|<filename>\n"
     573                           "%s modifyhd %s        <uuid>|<filename>\n"
    561574                     "                            [--type normal|writethrough|immutable|shareable|\n"
    562575                     "                                    readonly|multiattach]\n"
     
    564577                     "                            [--compact]\n"
    565578                     "                            [--resize <megabytes>|--resizebyte <bytes>]\n"
    566                      "\n");
     579                     "\n", SEP);
    567580
    568581    if (u64Cmd & USAGE_CLONEHD)
    569582        RTStrmPrintf(pStrm,
    570                      "VBoxManage clonehd          <uuid>|<filename> <uuid>|<outputfile>\n"
     583                           "%s clonehd %s         <uuid>|<filename> <uuid>|<outputfile>\n"
    571584                     "                            [--format VDI|VMDK|VHD|RAW|<other>]\n"
    572585                     "                            [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
    573586                     "                            [--existing]\n"
    574                      "\n");
     587                     "\n", SEP);
    575588
    576589    if (u64Cmd & USAGE_CONVERTFROMRAW)
    577590        RTStrmPrintf(pStrm,
    578                      "VBoxManage convertfromraw   <filename> <outputfile>\n"
     591                           "%s convertfromraw %s  <filename> <outputfile>\n"
    579592                     "                            [--format VDI|VMDK|VHD]\n"
    580593                     "                            [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
    581594                     "                            [--uuid <uuid>]\n"
    582                      "VBoxManage convertfromraw   stdin <outputfile> <bytes>\n"
     595                           "%s convertfromraw %s  stdin <outputfile> <bytes>\n"
    583596                     "                            [--format VDI|VMDK|VHD]\n"
    584597                     "                            [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
    585598                     "                            [--uuid <uuid>]\n"
    586                      "\n");
     599                     "\n", SEP, SEP);
    587600
    588601    if (u64Cmd & USAGE_GETEXTRADATA)
    589602        RTStrmPrintf(pStrm,
    590                      "VBoxManage getextradata     global|<uuid>|<name>\n"
     603                           "%s getextradata %s    global|<uuid>|<name>\n"
    591604                     "                            <key>|enumerate\n"
    592                      "\n");
     605                     "\n", SEP);
    593606
    594607    if (u64Cmd & USAGE_SETEXTRADATA)
    595608        RTStrmPrintf(pStrm,
    596                      "VBoxManage setextradata     global|<uuid>|<name>\n"
     609                           "%s setextradata %s    global|<uuid>|<name>\n"
    597610                     "                            <key>\n"
    598611                     "                            [<value>] (no value deletes key)\n"
    599                      "\n");
     612                     "\n", SEP);
    600613
    601614    if (u64Cmd & USAGE_SETPROPERTY)
    602615        RTStrmPrintf(pStrm,
    603                      "VBoxManage setproperty      machinefolder default|<folder> |\n"
     616                           "%s setproperty %s     machinefolder default|<folder> |\n"
    604617                     "                            vrdeauthlibrary default|<library> |\n"
    605618                     "                            websrvauthlibrary default|null|<library> |\n"
     
    607620                     "                            autostartdbpath null|<folder> |\n"
    608621                     "                            loghistorycount <value>\n"
    609                      "\n");
     622                     "\n", SEP);
    610623
    611624    if (u64Cmd & USAGE_USBFILTER_ADD)
    612625        RTStrmPrintf(pStrm,
    613                      "VBoxManage usbfilter        add <index,0-N>\n"
     626                           "%s usbfilter %s       add <index,0-N>\n"
    614627                     "                            --target <uuid>|<name>|global\n"
    615628                     "                            --name <string>\n"
     
    624637                     "                            [--serialnumber <string>] (null)\n"
    625638                     "                            [--maskedinterfaces <XXXXXXXX>]\n"
    626                      "\n");
     639                     "\n", SEP);
    627640
    628641    if (u64Cmd & USAGE_USBFILTER_MODIFY)
    629642        RTStrmPrintf(pStrm,
    630                      "VBoxManage usbfilter        modify <index,0-N>\n"
     643                           "%s usbfilter %s       modify <index,0-N>\n"
    631644                     "                            --target <uuid>|<name>|global\n"
    632645                     "                            [--name <string>]\n"
     
    641654                     "                            [--serialnumber <string>|\"\"]\n"
    642655                     "                            [--maskedinterfaces <XXXXXXXX>]\n"
    643                      "\n");
     656                     "\n", SEP);
    644657
    645658    if (u64Cmd & USAGE_USBFILTER_REMOVE)
    646659        RTStrmPrintf(pStrm,
    647                      "VBoxManage usbfilter        remove <index,0-N>\n"
     660                           "%s usbfilter %s       remove <index,0-N>\n"
    648661                     "                            --target <uuid>|<name>|global\n"
    649                      "\n");
     662                     "\n", SEP);
    650663
    651664    if (u64Cmd & USAGE_SHAREDFOLDER_ADD)
    652665        RTStrmPrintf(pStrm,
    653                      "VBoxManage sharedfolder     add <vmname>|<uuid>\n"
     666                           "%s sharedfolder %s    add <vmname>|<uuid>\n"
    654667                     "                            --name <name> --hostpath <hostpath>\n"
    655668                     "                            [--transient] [--readonly] [--automount]\n"
    656                      "\n");
     669                     "\n", SEP);
    657670
    658671    if (u64Cmd & USAGE_SHAREDFOLDER_REMOVE)
    659672        RTStrmPrintf(pStrm,
    660                      "VBoxManage sharedfolder     remove <vmname>|<uuid>\n"
     673                           "%s sharedfolder %s    remove <vmname>|<uuid>\n"
    661674                     "                            --name <name> [--transient]\n"
    662                      "\n");
     675                     "\n", SEP);
    663676
    664677#ifdef VBOX_WITH_GUEST_PROPS
    665678    if (u64Cmd & USAGE_GUESTPROPERTY)
    666         usageGuestProperty(pStrm);
     679        usageGuestProperty(pStrm, SEP);
    667680#endif /* VBOX_WITH_GUEST_PROPS defined */
    668681
    669682#ifdef VBOX_WITH_GUEST_CONTROL
    670683    if (u64Cmd & USAGE_GUESTCONTROL)
    671         usageGuestControl(pStrm);
     684        usageGuestControl(pStrm, SEP);
    672685#endif /* VBOX_WITH_GUEST_CONTROL defined */
    673686
     
    675688    {
    676689        RTStrmPrintf(pStrm,
    677                      "VBoxManage debugvm          <uuid>|<name>\n"
     690                           "%s debugvm %s         <uuid>|<name>\n"
    678691                     "                            dumpguestcore --filename <name> |\n"
    679692                     "                            info <item> [args] |\n"
     
    692705                     "                            statistics [--reset] [--pattern <pattern>]\n"
    693706                     "                            [--descriptions]\n"
    694                      "\n");
     707                     "\n", SEP);
    695708    }
    696709    if (u64Cmd & USAGE_METRICS)
    697710        RTStrmPrintf(pStrm,
    698                      "VBoxManage metrics          list [*|host|<vmname> [<metric_list>]]\n"
     711                           "%s metrics %s         list [*|host|<vmname> [<metric_list>]]\n"
    699712                     "                                                 (comma-separated)\n\n"
    700                      "VBoxManage metrics          setup\n"
     713                           "%s metrics %s         setup\n"
    701714                     "                            [--period <seconds>] (default: 1)\n"
    702715                     "                            [--samples <count>] (default: 1)\n"
    703716                     "                            [--list]\n"
    704717                     "                            [*|host|<vmname> [<metric_list>]]\n\n"
    705                      "VBoxManage metrics          query [*|host|<vmname> [<metric_list>]]\n\n"
    706                      "VBoxManage metrics          enable\n"
     718                           "%s metrics %s         query [*|host|<vmname> [<metric_list>]]\n\n"
     719                           "%s metrics %s         enable\n"
    707720                     "                            [--list]\n"
    708721                     "                            [*|host|<vmname> [<metric_list>]]\n\n"
    709                      "VBoxManage metrics          disable\n"
     722                           "%s metrics %s         disable\n"
    710723                     "                            [--list]\n"
    711724                     "                            [*|host|<vmname> [<metric_list>]]\n\n"
    712                      "VBoxManage metrics          collect\n"
     725                           "%s metrics %s         collect\n"
    713726                     "                            [--period <seconds>] (default: 1)\n"
    714727                     "                            [--samples <count>] (default: 1)\n"
     
    716729                     "                            [--detach]\n"
    717730                     "                            [*|host|<vmname> [<metric_list>]]\n"
    718                      "\n");
     731                     "\n", SEP, SEP, SEP, SEP, SEP, SEP);
    719732
    720733#if defined(VBOX_WITH_NETFLT)
     
    722735    {
    723736        RTStrmPrintf(pStrm,
    724                      "VBoxManage hostonlyif       ipconfig <name>\n"
     737                           "%s hostonlyif %s      ipconfig <name>\n"
    725738                     "                            [--dhcp |\n"
    726739                     "                            --ip<ipv4> [--netmask<ipv4> (def: 255.255.255.0)] |\n"
     
    730743                     "                            remove <name>\n"
    731744# endif
    732                      "\n");
     745                     "\n", SEP);
    733746    }
    734747#endif
     
    737750    {
    738751        RTStrmPrintf(pStrm,
    739                      "VBoxManage dhcpserver       add|modify --netname <network_name> |\n"
     752                           "%s dhcpserver %s      add|modify --netname <network_name> |\n"
    740753#if defined(VBOX_WITH_NETFLT)
    741754                     "                                       --ifname <hostonly_if_name>\n"
     
    746759                     "                            --upperip <upper_ip>]\n"
    747760                     "                            [--enable | --disable]\n\n"
    748                      "VBoxManage dhcpserver       remove --netname <network_name> |\n"
     761                           "%s dhcpserver %s      remove --netname <network_name> |\n"
    749762#if defined(VBOX_WITH_NETFLT)
    750763                     "                                   --ifname <hostonly_if_name>\n"
    751764#endif
    752                      "\n");
     765                     "\n", SEP, SEP);
    753766    }
    754767    if (u64Cmd & USAGE_EXTPACK)
    755768    {
    756769        RTStrmPrintf(pStrm,
    757                      "VBoxManage extpack          install [--replace] <tarball> |\n"
     770                           "%s extpack %s         install [--replace] <tarball> |\n"
    758771                     "                            uninstall [--force] <name> |\n"
    759772                     "                            cleanup\n"
    760                      "\n");
     773                     "\n", SEP);
    761774    }
    762775}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette