Re: "Do one thing well..." (Flash)

2011-06-16 Thread Joshua Judson Rosen
"Michael ODonnell" writes: > > "One Year Later: Adobe Abandons 64-bit Linux Again": > > http://broadcast.oreilly.com/2011/06/one-year-later-adobe-abandons.html "This decision makes even less sense than it did a year ago. 32-bit processors have effectively become legacy technology.

Helios Project Director Felled By Stroke; Linux Community Support Sought

2011-06-16 Thread Kevin D. Clark
http://broadcast.oreilly.com/2011/06/helios-project-director-felled.html ___ gnhlug-discuss mailing list gnhlug-discuss@mail.gnhlug.org http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss/

Re: tcl/TK question

2011-06-16 Thread Jerry Feldman
One possible solution that seems to work. In my wrapper script: --arg1 --arg2 2>&1 And in the tcl script: if [catch {open "|$command"} input] { I still get my zombie on the start command, but I query the open file list in tcl (file channels) and close any open files other than stdxxx. It

Re: tcl/TK question

2011-06-16 Thread Jerry Feldman
Basically, I didn't know tcl/tk until a week or so ago although I'm experienced in C/C++/BASH. So, I looked for code that tended to do what I wanted to do. In this case, the code comes from the exelog.tcl program that appears in "Practical Programming in TCL and Tk". Brent's explanation is "If you

Re: tcl/TK question

2011-06-16 Thread Michael ODonnell
> if [catch {open "|$command |& cat"} input] { Curiosity: why do you pipe it through cat? ___ gnhlug-discuss mailing list gnhlug-discuss@mail.gnhlug.org http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss/

tcl/TK question

2011-06-16 Thread Jerry Feldman
I am using a tcl/tk script to serve as a GUI for an existing BASH system. Essentially, most of the buttons go through a single command processor in tcl. I set up a command as "script name " The code is: if [catch {open "|$command |& cat"} input] { . The script I call is a wrapper BASH script