Hi,

I'm using QProcess to launch some commands, no problem with basic ones, ie to launch a LaTeX file with pdflatex I use:

self.proc.start("pdflatex", QtCore.QStringList(["my_file.tex"]))

Now, I wanted to launch the following command :

"lout my_file.lout > my_file.ps"

I've made these tries but they all failed :

1. self.proc.start("lout", QtCore.QStringList(["my_file.lout",">","my_file.ps"]))

2. self.proc.start("lout", QtCore.QStringList(["my_file.lout"," > ","my_file.ps"]))

Any idea ?
Thanks a lot in advance.
_______________________________________________
PyQt mailing list    PyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to