Try this:

| p |
p:= (PipeableOSProcess waitForCommand: 'whoami').
Transcript show: (p output).



On Mon, Nov 23, 2015 at 6:42 PM, Peter Uhnak <i.uhnak@gmail.com> wrote:
Hi,

how can I pipe output from PipeableOSProcess to Transcript?

I tried doing:

(PipeableOSProcess command: 'my-command.sh') outputOn: Transcript.

However `#outputOn:` doesn't send `#endEntry` so I don't see anything,
and even if it would, the output is delivered there at the end anyway.

I would like to see the live result of the running commands.

Thanks,

--
Peter