Re: How to repeat a bash shell script until success

2017-07-14 Thread Sorin Adrian Savu
On Fri, Jul 14, 2017 at 4:06 PM, cyg Simple wrote: > > On 7/14/2017 1:27 AM, Gary Johnson wrote: > > On 2017-07-12, Bryan Dunphy wrote: > >> I have a shell script, originally created for Mac OS X. that waits > >> for an external drive to be mounted (by testing an “ls” of the > >> volume’s root dir

Re: A success installing Dataplot using Cygwin, thanks to this list

2017-07-14 Thread Michael Stellar
Woops sorry, wrong tabs :/, On Sat, Jul 15, 2017 at 3:59 AM, Michael Stellar wrote: > The client editor is still compiled not full source code right? I > meant on premise 399$. And also from the discord a user mentioned that > AGIS source code is not really full, so i cannot buy full source code

Re: A success installing Dataplot using Cygwin, thanks to this list

2017-07-14 Thread Michael Stellar
The client editor is still compiled not full source code right? I meant on premise 399$. And also from the discord a user mentioned that AGIS source code is not really full, so i cannot buy full source code for the server?. On Sat, Jul 15, 2017 at 2:23 AM, David Stacey wrote: > On 12/07/17 16:48,

Re: A success installing Dataplot using Cygwin, thanks to this list

2017-07-14 Thread David Stacey
On 12/07/17 16:48, Ian Lambert via cygwin wrote: Question: Would this software be a candidate for a Cygwin package? "Dataplot® is a free, public-domain, multi-platform (Unix, Linux, Mac OS X, Windows XP/VISTA/7/8/10) software system for scientific visualization, statistical analysis, and non-l

Re: How to repeat a bash shell script until success

2017-07-14 Thread Kaz Kylheku
On 14.07.2017 10:34, Brian Inglis wrote: On 2017-07-14 11:07, Kaz Kylheku wrote: while ! program args ... ; do sleep 1 done Has everyone forgotten there is also an until loop, supported by at least sh, dash, bash, [m]ksh: I've forgotten that at least twice. (I don't remember the ex

Re: How to repeat a bash shell script until success

2017-07-14 Thread Brian Inglis
On 2017-07-14 11:07, Kaz Kylheku wrote: > On 12.07.2017 08:35, Bryan Dunphy wrote: >> I have a shell script, originally created for Mac OS X. that waits for >> an external drive to be mounted (by testing an “ls” of the volume’s >> root directory for success) then runs an “rsync” >> command. How do

Re: How to repeat a bash shell script until success

2017-07-14 Thread Kaz Kylheku
On 12.07.2017 08:35, Bryan Dunphy wrote: I have a shell script, originally created for Mac OS X. that waits for an external drive to be mounted (by testing an “ls” of the volume’s root directory for success) then runs an “rsync” command. How do I get the script to be run repeatedly until success

Re: How to repeat a bash shell script until success

2017-07-14 Thread cyg Simple
On 7/14/2017 1:27 AM, Gary Johnson wrote: > On 2017-07-12, Bryan Dunphy wrote: >> I have a shell script, originally created for Mac OS X. that waits >> for an external drive to be mounted (by testing an “ls” of the >> volume’s root directory for success) then runs an “rsync” command. >> How do I ge