Nah, os.system just returns the return value.
You'd be better off using a subprocess and read the STDOUT pipe... Additionally, you could add a " > filename.txt" to the end of your command, which will dump the stdout into a file called filename.txt.
Hmm, yes that would probably be a more sensible idea!
Jas