Changeset 21936 in vbox
- Timestamp:
- Aug 3, 2009 8:45:14 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r21924 r21936 313 313 314 314 315 def monitorV box(ctx, dur):315 def monitorVBox(ctx, dur): 316 316 vbox = ctx['vb'] 317 317 cb = ctx['global'].createCallback('IVirtualBoxCallback', VBoxMonitor, vbox) … … 708 708 return 0 709 709 710 def monitorV boxCmd(ctx, args):710 def monitorVBoxCmd(ctx, args): 711 711 if (len(args) > 2): 712 print "usage: monitorV box (duration)"712 print "usage: monitorVBox (duration)" 713 713 return 0 714 714 dur = 5 715 715 if len(args) > 1: 716 716 dur = float(args[1]) 717 monitorV box(ctx, dur)717 monitorVBox(ctx, dur) 718 718 return 0 719 719 … … 955 955 'guest':['Execute command for guest: guest Win32 \'console.mouse.putMouseEvent(20, 20, 0, 0)\'', guestCmd, 0], 956 956 'monitorGuest':['Monitor what happens with the guest for some time: monitorGuest Win32 10', monitorGuestCmd, 0], 957 'monitorV box':['Monitor what happens with Virtual Box for some time: monitorVbox 10', monitorVboxCmd, 0],957 'monitorVBox':['Monitor what happens with Virtual Box for some time: monitorVBox 10', monitorVBoxCmd, 0], 958 958 'portForward':['Setup permanent port forwarding for a VM, takes adapter number host port and guest port: portForward Win32 0 8080 80', portForwardCmd, 0], 959 959 'showLog':['Show log file of the VM, : showLog Win32', showLogCmd, 0],
Note:
See TracChangeset
for help on using the changeset viewer.