Re: [PyQt] QProcess: Seems to execute nothing

2011-01-30 Thread Phil Thompson
On Sun, 30 Jan 2011 18:55:49 +0100, Manuel Rotter wrote: > Hello all > > I'm trying to use QProcess to execute some commands, but it seems to do > nothing. > > Here is my Code: > > http://python.pastebin.com/NKHaj1W4 > - > p = QtCore.QProcess() > #p.setStandardOu

[PyQt] QProcess: Seems to execute nothing

2011-01-30 Thread Manuel Rotter
Hello all I'm trying to use QProcess to execute some commands, but it seems to do nothing. Here is my Code: http://python.pastebin.com/NKHaj1W4 - p = QtCore.QProcess() #p.setStandardOutputFile(temp.name) p.start("sh -c 'echo lol > /home/naeg/lolfile'") p.close()