May 1, 2014
1:58 a.m.
On Tue, Apr 29, 2014 at 07:15:30AM -0700, Sean P. DeNigris wrote:
Same goes with Unix interop. REPL is easy, but is it documented and marketed? What would it take to easily pipe output of other programs to Pharo? Maybe be able to sourceCodeString exportAsUnixCommand: '/usr/bin/my_cool_command'
That's what CommandShell/OSProcess is for. For example: sourceCodeString := 'ls -l | cat | cat | cat'. (ProxyPipeline command: sourceCodeString) upToEndOfFile Dave