in reply to Launch from Tk

use exec instead of backticks or system, and run the script in the background.


Warning: Unless otherwise stated, code is untested. Do not use without understanding. Code is posted in the hopes it is useful, but without warranty. All copyrights are relinquished into the public domain unless otherwise stated. I am not an angel. I am capable of error, and err on a fairly regular basis. If I made a mistake, please let me know (such as by replying to this node).

Replies are listed 'Best First'.
Re: Re: Launch from Tk
by aplonis (Pilgrim) on May 30, 2003 at 03:47 UTC
    If I do...
    exec("foo");
    ...then I get the xterm, but Tk dies.

    If I do...
    exec("foo","&");
    ...nothing happens when Tk's button is clicked.