On Mon, 2009-10-12, Bjorn wrote:
>
> Hi, I woul like to start a program from within python (under linux):
> This works fine:
>
> import os
> path = 'tclsh AppMain.tcl hej.gb'
> os.system(path)
>
> The file AppMain.tcl is the executable
Not really -- tclsh is the executable from Python's and the sy
On Oct 12, 10:15 am, Bjorn wrote:
> Hi, I woul like to start a program from within python (under linux):
> This works fine:
>
> import os
> path = 'tclsh AppMain.tcl hej.gb'
> os.system(path)
>
> The file AppMain.tcl is the executable and the file hej.gb is a
> textfile in the same directory.
> Th