Changeset 54438 in vbox for trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
- Timestamp:
- Feb 24, 2015 11:09:17 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r54400 r54438 524 524 if (fCategory & USAGE_CLOSEMEDIUM) 525 525 RTStrmPrintf(pStrm, 526 "%s closemedium %s disk|dvd|floppy<uuid|filename>\n"526 "%s closemedium %s [disk|dvd|floppy] <uuid|filename>\n" 527 527 " [--delete]\n" 528 528 "\n", SEP); … … 586 586 "\n", SEP); 587 587 588 if (fCategory & USAGE_SHOW HDINFO)589 RTStrmPrintf(pStrm, 590 "%s show hdinfo %s<uuid|filename>\n"591 "\n", SEP); 592 593 if (fCategory & USAGE_CREATE HD)594 RTStrmPrintf(pStrm, 595 "%s create hd %s--filename <filename>\n"588 if (fCategory & USAGE_SHOWMEDIUMINFO) 589 RTStrmPrintf(pStrm, 590 "%s showmediuminfo %s [disk|dvd|floppy] <uuid|filename>\n" 591 "\n", SEP); 592 593 if (fCategory & USAGE_CREATEMEDIUM) 594 RTStrmPrintf(pStrm, 595 "%s createmedium %s [disk|dvd|floppy] --filename <filename>\n" 596 596 " [--size <megabytes>|--sizebyte <bytes>]\n" 597 597 " [--diffparent <uuid>|<filename>\n" … … 600 600 "\n", SEP); 601 601 602 if (fCategory & USAGE_MODIFY HD)603 RTStrmPrintf(pStrm, 604 "%s modify hd %s<uuid|filename>\n"602 if (fCategory & USAGE_MODIFYMEDIUM) 603 RTStrmPrintf(pStrm, 604 "%s modifymedium %s [disk|dvd|floppy] <uuid|filename>\n" 605 605 " [--type normal|writethrough|immutable|shareable|\n" 606 606 " readonly|multiattach]\n" … … 611 611 "\n", SEP); 612 612 613 if (fCategory & USAGE_CLONE HD)614 RTStrmPrintf(pStrm, 615 "%s clone hd %s<uuid|inputfile> <uuid|outputfile>\n"613 if (fCategory & USAGE_CLONEMEDIUM) 614 RTStrmPrintf(pStrm, 615 "%s clonemedium %s [disk|dvd|floppy] <uuid|inputfile> <uuid|outputfile>\n" 616 616 " [--format VDI|VMDK|VHD|RAW|<other>]\n" 617 617 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n" … … 619 619 "\n", SEP); 620 620 621 if (fCategory & USAGE_ HDPROPERTY)622 RTStrmPrintf(pStrm, 623 "%s hdproperty %sset <uuid|filename>\n"621 if (fCategory & USAGE_MEDIUMPROPERTY) 622 RTStrmPrintf(pStrm, 623 "%s mediumproperty %s [disk|dvd|floppy] set <uuid|filename>\n" 624 624 " <property> <value>\n" 625 625 "\n" 626 " get <uuid|filename>\n"626 " [disk|dvd|floppy] get <uuid|filename>\n" 627 627 " <property>\n" 628 628 "\n" 629 " delete <uuid|filename>\n"629 " [disk|dvd|floppy] delete <uuid|filename>\n" 630 630 " <property>\n" 631 631 "\n", SEP);
Note:
See TracChangeset
for help on using the changeset viewer.