hi there, I would like the read STDIN and display it in my Shoes.app.
In fact I would like to pipe some output of another programm to my Shoes.app
Something like : echo 'hello' | shoes myshoe.rb
I can't use popen because the other app is a daemon.
I have tried somthing like
Shoes.app do
@box = stack
while line = STDIN.gets
@box.append { para line }
end
end
but I failed.
Any idea?
thx
