Re: 1.5.20: Occasional crash at address 0x6100365f (cygthread::stub() in cygthre

2006-07-28 Thread Erik Cumps
> Jon Harrison selex-sas.com> writes: > > > > Updating to 1.5.12 doesn't seem to help. > Sorry, finger trouble: meant 5.1.21 Wow, this thing will take at least another 42 years to fix! ;) Erik -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cy

Re: Core dump calling strptime()

2005-11-18 Thread Erik Cumps
Corinna said: > Newlib's strptime function doesn't implement the 'c' and the 'Z'(*) > format specifiers. If it encounters one of the non-implemented format > specifiers it calls the abort() function which then results in the core > dump. > (*) Z? I don't see this format specifier defined on Lin

Re: i want to re-download all packages... how?

2004-04-23 Thread Erik Cumps
"electa" wrote: > it is interensting... (for future CDs ;-) where i can found info on this > utility? http://www.google.com/search?q=mkcygwget&sourceid=opera&num=50&ie=utf-8&oe=utf-8 > "Erik Cumps" <[EMAIL PROTECTED]> ha scritto nel messaggio

RE: i want to re-download all packages... how?

2004-04-23 Thread Erik Cumps
O that implies _not_ installing it. Why not use mkcygwget. It's what I do to create my Cygwin installation CDs... Erik Cumps -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

RE: newby stupid question - cat mutiple files to new piped output files

2003-11-26 Thread Erik Cumps
How about: --- 8< cut here --- #!/bin/bash pushd /cygdrive/d/pc1 for file in *.csv; do if [ "${file##new_}" != "${file}" ]; then next; fi cat "${file}" | uniq > "new_${file}" done popd --- I Guess bas is like perl: TIMTOWTDI ;) > Ronald Landheer-Cieslak wrote on

/proc/partitions question

2003-10-22 Thread erik . cumps
Sorry, lost the previous mail so can't continue the thread. I took a look at the sources as cgf suggested and have the following question: in fhandler_proc.cc revision 1.36, in function format_proc_partitions() : after getting the drive geometry with 'IOCTL_DISK_GET_DRIVE_GEOMETRY' the size of t

RE: OT: Using sed - guru help wanted.

2003-10-21 Thread erik . cumps
Hi guys, sorry if this thread was dead but couldn't resist. Besides, it makes the start of my workday just that more bearable... :) (regular expressions for fun and profit eh) Simply sed: sed 's#^ *\(.*[^ ]\) */ *\(.*[^ ]\) *$#.\1.\2.#' Simply perl: perl -pe 's/^\s*(.*\S)\s*\/\s*(.*\S)