Changeset 17090 in vbox
- Timestamp:
- Feb 24, 2009 7:39:36 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r17081 r17090 320 320 if (u64Cmd & USAGE_EXPORTAPPLIANCE) 321 321 { 322 RTPrintf("VBoxManage export <machines> -o<ovf>\n"322 RTPrintf("VBoxManage export <machines> [--output|-o] <ovf>\n" 323 323 "\n"); 324 324 } -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r17078 r17090 205 205 case MachineState_Running: 206 206 case MachineState_Paused: 207 { 208 Guid uuid; 209 rc = machines [i]->COMGETTER(Id) (uuid.asOutParam()); 210 if (SUCCEEDED(rc)) 211 RTPrintf ("%s\n", uuid.toString().raw()); 212 break; 213 } 207 rc = showVMInfo(a->virtualBox, 208 machines[i], 209 (fOptLong) ? VMINFO_STANDARD : VMINFO_COMPACT); 214 210 } 215 211 }
Note:
See TracChangeset
for help on using the changeset viewer.