From: Ogz <com...@gm...> - 2005-07-22 14:25:56
|
In my code i have something like: =20 burncmd =3D "growisofs -M " + burner + " " + "-R -J" + " " + some_files result =3D ssh.sendcmd(burncmd, readtype=3D-2) /*reat type may be wrong*/ print result=20 But, i can not get the whole result value of the command. This is the result i got: growisofs -M /dev/hda -R -J /mnt/isolinux/=20 Executing 'mkisofs -C 16,192 -M /dev/fd/3 -R -J /mnt/isolinux/ | builtin_dd of=3D/dev/hda obs=3D32k seek=3D12' INFO:=09UTF-8 character encoding detected by locale settings. =09Assuming UTF-8 encoded filenames on source filesystem, =09use -input-charset to override. Rock Ridge signatures found /dev/hda: "Current Write Speed" is 4.1x1385KBps. How can get the whole result value. The rest of the return value should include something like these: Max brk space used 0 376 extents written (0 MB) builtin_dd: 192*2KB out @ average infx1385KBps /dev/hda: flushing cache /dev/hda: copying volume descriptor(s) /dev/hda: flushing cache /dev/hda: stopping de-icing /dev/hda: writing lead-out /dev/hda: reloading tray |