Re: [Pharo-users] Library for shell interfacing on Mac

2016-02-29 Thread Thierry Goubier
Hi Alexandre, Peter, on Mac OS/X and Pharo 5/Spur, you should use OSSubprocess[1]. Thierry [1] http://forum.world.st/ANN-OSSubprocess-first-milestone-tp4871382.html Le 29/02/2016 18:30, Alexandre Bergel a écrit : Thanks John. Peter, can you updating the GraphViz layout with OSProcess? That w

Re: [Pharo-users] Library for shell interfacing on Mac

2016-02-29 Thread Alexandre Bergel
Thanks John. Peter, can you updating the GraphViz layout with OSProcess? That would be really helpful Cheers, Alexandre > On Feb 29, 2016, at 10:54 AM, john pfersich wrote: > > I use OSProcess and CommandShell in Pharo 4.0. Works well. Load them by > > Gofer new > squeaksource: 'OSPro

Re: [Pharo-users] Library for shell interfacing on Mac

2016-02-29 Thread john pfersich
Forgot add that this info is from http://pharo.gemtalksystems.com/book/PharoTools/OSProcess/ On Monday, February 29, 2016, john pfersich wrote: > I use OSProcess and CommandShell in Pharo 4.0. Works well. Load them by > > Gofer new > squeaksource: 'OSProcess'; > package: 'OSProcess'; > load. > G

Re: [Pharo-users] Library for shell interfacing on Mac

2016-02-29 Thread john pfersich
I use OSProcess and CommandShell in Pharo 4.0. Works well. Load them by Gofer new squeaksource: 'OSProcess'; package: 'OSProcess'; load. Gofer new squeaksource: 'CommandShell'; package: 'CommandShell-Piping'; load. and then do something like PipeableOSProcess command: 'netstat -a | grep LISTEN |

[Pharo-users] Library for shell interfacing on Mac

2016-02-29 Thread Peter Uhnák
Hi, what is the recommended way to execute shell commands on Mac from Pharo? Apparently NBMacShell is not supported anymore. Thanks, Peter