It is possible to call applications from a python program using, e.g.
the os.system command:
os.system("ls -l")
Is it possible to attach the output from this command to a file?
I would like to be able to read this output, instead of just sending it to
stdout.
Cheers
Jesper