in reply to run system command in separate process in tk
What's probably going on is that you're using system to open up notepad ... consider these oneliners
The documentation for system and exec explains things, but I think you want exec.perl -e"system('notepad');" perl -e"exec('notepad');" perl -e"`notepad`;"
| ______crazyinsomniac_____________________________ Of all the things I've lost, I miss my mind the most. perl -e "$q=$_;map({chr unpack qq;H*;,$_}split(q;;,q*H*));print;$q/$q;" |
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (crazyinsomniac) Re: run system command in separate process in tk
by benlaw (Scribe) on Apr 18, 2002 at 07:04 UTC |