Re: Possible issue with gawk 5.0.1-1: Getting new warnings

2019-07-12 Thread Steven Penny
On Thu, 11 Jul 2019 11:51:09, Vipul P wrote: Here is a sample script to invoke awk: $ cat ./gawk_error.sh #!/bin/sh echo "This:is:a:colon:separated:line:%%%:" | awk '{ gsub("\\%", "%25", $0); gsub("\\:", "%3A", $0); print }' As others said, your invocation is not idiomatic AWK. Anywher

Re: How to start and verify cron?

2019-07-12 Thread David Karr
On Fri, Jul 12, 2019 at 8:20 AM Brian Inglis wrote: > > On 2019-07-11 15:20, David Karr wrote: > > On Thu, Jul 11, 2019 at 12:56 PM David Karr wrote: > > On Wed, Jul 10, 2019 at 4:04 PM Brian Inglis wrote: > > On 2019-07-10 16:15, David Karr wrote: > > > On Wed, Jul 10, 2019 at

Re: building expect problems on W10

2019-07-12 Thread Brian Inglis
On 2019-07-11 17:09, René Berber wrote: > On 7/11/2019 4:25 PM, rih3306 wrote: >> I'm having trouble building expect. >> I'm using W10 + cygwin + GCC 9.1.0 >> $ uname -a >> CYGWIN_NT-10.0 GZ1CB 2.11.2(0.329/5/3) 2018-11-08 14:34 x86_64 Cygwin > That's an odd combination, an ancient version of Cy

Re: sigpending() incorrectly returns signals pending on other threads

2019-07-12 Thread Corinna Vinschen
On Jul 6 19:15, Kenton Varda wrote: > I found a second problem which may or may not be related: > > If two threads use pthread_kill() to send each other the same signal, > such that the signal should be separately pending on both threads at > the same time, only one of the two signals is actually

Re: sigpending() incorrectly returns signals pending on other threads

2019-07-12 Thread Corinna Vinschen
On Jul 6 15:46, Kenton Varda wrote: > Hello Cygwin, > > According to the (Linux) man page: "sigpending() returns the set of > signals that are pending for delivery to the calling thread" > > However, on Cygwin, sigpending() seems to return the set of signals > pending on any thread, as shown in

Re: How to start and verify cron?

2019-07-12 Thread Brian Inglis
On 2019-07-11 15:20, David Karr wrote: > On Thu, Jul 11, 2019 at 12:56 PM David Karr wrote: > On Wed, Jul 10, 2019 at 4:04 PM Brian Inglis wrote: > On 2019-07-10 16:15, David Karr wrote: > > On Wed, Jul 10, 2019 at 10:20 AM Brian Inglis wrote: > >     On 2019-07-10 10:55

Re: Possible issue with gawk 5.0.1-1: Getting new warnings

2019-07-12 Thread Brian Inglis
On 2019-07-12 04:47, Houder wrote: > On Thu, 11 Jul 2019 11:51:09, Vipul P wrote: >> Here is a sample script to invoke awk: >> $ cat ./gawk_error.sh >> #!/bin/sh >> echo "This:is:a:colon:separated:line:%%%:" | awk '{ >> gsub("\\%", "%25", $0); >> gsub("\\:", "%3A", $0); >> print >> }' > gs

Re: Possible issue with gawk 5.0.1-1: Getting new warnings

2019-07-12 Thread Houder
Hi, Apparently Corinna V. (the maintainer of gawk) is not available at the moment. On Thu, 11 Jul 2019 11:51:09, Vipul P wrote: > Hello, > > Here is a sample script to invoke awk: > > $ cat ./gawk_error.sh > #!/bin/sh > echo "This:is:a:colon:separated:line:%%%:" | awk '{ > gsub("\\%", "%25",