Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- Nice! This helps -> thanks for the explanation. Albrecht On 19.02.19 21:10, Mariano Martinez Peck wrote: Yeah, readme is out of date. 64 bits is working: https://github.com/pharo-contributions/OSSubprocess/issues/22 On Tue, Feb 19, 2019 at 4:48 PM Alistair Grant

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Mariano Martinez Peck
Yeah, readme is out of date. 64 bits is working: https://github.com/pharo-contributions/OSSubprocess/issues/22 On Tue, Feb 19, 2019 at 4:48 PM Alistair Grant wrote: > On Tue, 19 Feb 2019 at 13:45, Albrecht Baur via Pharo-users > wrote: > > > > Thank you. > > > > The Metacello snippet helps. It

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Alistair Grant
On Tue, 19 Feb 2019 at 13:45, Albrecht Baur via Pharo-users wrote: > > Thank you. > > The Metacello snippet helps. It loads a newer version than that from the > catalog browser. > > > But 2 more questions: > > 1.: Is there a reason not to use just ... > > LibC uniqueInstance system: 'zip -r

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- Thank you. The Metacello snippet helps. It loads a newer version than that from the catalog browser. But 2 more questions: 1.: Is there a reason not to use just ... LibC uniqueInstance system: 'zip -r 123.zip zipme/' ... ? And 2.: Is it ok to use OSSubprocess on in

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Serge Stinckwich
Thank you Thierry. On Tue, Feb 19, 2019 at 12:48 PM Thierry Goubier wrote: > Hi Serge, Albrecht, > > loading OSProcess directly with the following expression works: > > Metacello new > configuration: 'OSProcess'; > repository: 'http://www.squeaksource.com/MetacelloRepository'; >

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Thierry Goubier
Hi Serge, Albrecht, loading OSProcess directly with the following expression works: Metacello new configuration: 'OSProcess'; repository: 'http://www.squeaksource.com/MetacelloRepository'; load There is still some work to be done on OSProcess adaptation to Pharo 7, but they are in

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- I just tried the easy way via catalog browser. I think it is OSProcess 4.6.9 from http://www.squeaksource.com/OSProcess On 19.02.19 12:01, Serge Stinckwich wrote: On Tue, Feb 19, 2019 at 11:56 AM David T. Lewis > wrote: On Tue, Feb 19,

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Serge Stinckwich
On Tue, Feb 19, 2019 at 11:56 AM David T. Lewis wrote: > On Tue, Feb 19, 2019 at 11:37:38AM +0100, Albrecht Baur via Pharo-users > wrote: > > From: Albrecht Baur > > Subject: OSProcess / OSSubprocess / LibC uniqueInstance > > To: pharo-users@lists.pharo.org > > Date: Tue, 19 Feb 2019 11:37:38

Re: [Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread David T. Lewis
On Tue, Feb 19, 2019 at 11:37:38AM +0100, Albrecht Baur via Pharo-users wrote: > From: Albrecht Baur > Subject: OSProcess / OSSubprocess / LibC uniqueInstance > To: pharo-users@lists.pharo.org > Date: Tue, 19 Feb 2019 11:37:38 +0100 > > I need to execute OS commands from within a x64 pharo 7.01

[Pharo-users] OSProcess / OSSubprocess / LibC uniqueInstance

2019-02-19 Thread Albrecht Baur via Pharo-users
--- Begin Message --- I need to execute OS commands from within a x64 pharo 7.01 image on centos7 (for example: 'zip -r 123.zip zipme/'). I found these 3 tools: OSProcess, OSSubprocess, LibC uniqueInstance But I did not find any docu on which one to use for which use case. * OSProcess is in