Hi! I'm working in a GUI application as a frontend for some commands to copy some files into a Compact Flash. My question is: how can I execute the command from the GUI and show the output on a TextView inside the GUI application, line by line?? (the command is 'badblocks -sw /dev/cardcf', which informs the user of the progress being made checking a device). The best I have got is an application which can execute the command, and show the output when it finishes. I have heard about the 'subprocess' routines, and made some tests, but I'm currently unable to show the output on a TextView as the program executes, I can only send it to the terminal (and yes, the program executes while showing it's output, I don't have to wait). How can I redirect this output to a TextView??
I have trouble with the pipes, I redirect them to a variable (stdout and stderr), but it's the same: it's always showing up in the terminal, not in the GUI. BTW, I can send you my application if needed, tomorrow morning. I don't have it here right now. Thanks!!! -- Néstor +34 687 96 74 81 [EMAIL PROTECTED] _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://faq.pygtk.org/
