|
|
#1 |
|
MVP
Join Date: Jan 2002
Posts: 1,562
|
tkabber - error writing "stdout": socket is not connected
I finally got my $PATH working again in Apple-X11 so I have been creating Application menu launcher so I don't have to launch apps via xterm. I am having an issue with tkabber (Jabber chat client in tclk) when I launch from an xterm - all is well, launch from same command in Applications menu and I can not connect - I get this msg...
error writing "stdout": socket is not connected obviously it has no stdout to write too - since it not launched from terminal ... so is there a workaround? |
|
|
|
|
|
#2 |
|
MVP
Join Date: Jan 2002
Posts: 1,562
|
still having this problem - any one have any suggestions???
|
|
|
|
|
|
#3 |
|
Site Admin
Join Date: Jan 2002
Location: Montreal
Posts: 31,935
|
redirect stdout
In general, you can redirect the text that goes to 'stdout' (i.e. comes out in a Terminal window) by invoking a command-line application with a '>' and a destination filepath where you want the text to be put.
E.g.: tkabber > /Users/myname/stuff.txt will put the output into a new file called stuff.txt If you don't want the output at all, you can throw it away by redirecting it to the special file "/dev/null": tkabber > /dev/null So try using the above command for starting it. |
|
|
|
|
|
#4 |
|
MVP
Join Date: Jan 2002
Posts: 1,562
|
woohoo - thx hayne - that worked like a charm! I almost tried that too... next time I go with my gut
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|