Re: Script broken after updating bash to 4.3.46-7?

2016-09-06 Thread Eric Blake
On 09/04/2016 04:38 AM, Gene Pavlovsky wrote: > This issue never affected me personally, but it sounds like a serious > bug and I'm as glad as anybody that it's finally fixed. > However, having existing scripts suddenly breaking is not great. I'd > like to remind that I'm not the author of the scri

Re: Script broken after updating bash to 4.3.46-7?

2016-09-05 Thread Gene Pavlovsky
Lee, you have a point. Adding mysql.sh that runs `mysql.exe | d2u`, or using a cygwin version of mysql looks like the most viable solution at the moment. Or staying with the older version of bash, in which `read` still handled `\r\n` line endings... My point is OK I'll fix that script, who knows w

Re: Script broken after updating bash to 4.3.46-7?

2016-09-04 Thread Lee
On 9/4/16, Gene Pavlovsky wrote: > This issue never affected me personally, but it sounds like a serious > bug and I'm as glad as anybody that it's finally fixed. > However, having existing scripts suddenly breaking is not great. I'd > like to remind that I'm not the author of the script in questio

Re: Script broken after updating bash to 4.3.46-7?

2016-09-04 Thread Gene Pavlovsky
This issue never affected me personally, but it sounds like a serious bug and I'm as glad as anybody that it's finally fixed. However, having existing scripts suddenly breaking is not great. I'd like to remind that I'm not the author of the script in question, [AutoMySQLBackup](http://sourceforge.n

Re: Script broken after updating bash to 4.3.46-7?

2016-08-30 Thread cyg Simple
On 8/30/2016 1:38 PM, Eric Blake wrote: > On 08/30/2016 12:04 PM, cyg Simple wrote: >> On 8/29/2016 2:30 PM, Eric Blake wrote: >>> >>> Simplest fix: >>> >>> read ... < <(mysql ... | dos2unix) >>> >> >> This will break when the data returned by mysql is supposed to contain \r. >> >>> There. Now you

Re: Script broken after updating bash to 4.3.46-7?

2016-08-30 Thread Eric Blake
On 08/30/2016 12:04 PM, cyg Simple wrote: > On 8/29/2016 2:30 PM, Eric Blake wrote: >> >> Simplest fix: >> >> read ... < <(mysql ... | dos2unix) >> > > This will break when the data returned by mysql is supposed to contain \r. > >> There. Now you aren't feeding \r to read in the first place. >> >

Re: Script broken after updating bash to 4.3.46-7?

2016-08-30 Thread cyg Simple
On 8/29/2016 2:30 PM, Eric Blake wrote: > > Simplest fix: > > read ... < <(mysql ... | dos2unix) > This will break when the data returned by mysql is supposed to contain \r. > There. Now you aren't feeding \r to read in the first place. > But you might want to feed \r to read. It isn't a fi

Re: Script broken after updating bash to 4.3.46-7?

2016-08-29 Thread Eric Blake
On 08/26/2016 06:49 PM, Gene Pavlovsky wrote: > After I updated Cygwin yesterday, a daily database backup bash script > (`automysqlbackup`) broke. > My previous bash was 4.3.42-4 (installed when I updated Cygwin on > 2016/07/23), current is 4.3.46-7. > Here's the code snippet: > ```bash > local i

Re: Script broken after updating bash to 4.3.46-7?

2016-08-29 Thread cyg Simple
On 8/27/2016 12:15 PM, Andrey Repin wrote: > Greetings, Gene Pavlovsky! > >> Looks like it's related to a recent change in bash, which is `read` >> now honors Cygwin-specific `igncr` shell option (`set -o igncr`), >> which I didn't enable. >> Adding `set -o igncr` to the top of the script does the

RE: Script broken after updating bash to 4.3.46-7?

2016-08-29 Thread Nellis, Kenneth
From: Gene Pavlovsky > Andrey, > That's what I personally think, none of the scripts I use have CRs, > and this is why I'd prefer not using the `igncr` option. > However the recent change to how `read` works makes it necessary to > modify existing scripts which interoperate with Windows console >

Re: Script broken after updating bash to 4.3.46-7?

2016-08-27 Thread Gene Pavlovsky
Andrey, That's what I personally think, none of the scripts I use have CRs, and this is why I'd prefer not using the `igncr` option. However the recent change to how `read` works makes it necessary to modify existing scripts which interoperate with Windows console programs (in my case, Windows buil

Re: Script broken after updating bash to 4.3.46-7?

2016-08-27 Thread Andrey Repin
Greetings, Gene Pavlovsky! > Looks like it's related to a recent change in bash, which is `read` > now honors Cygwin-specific `igncr` shell option (`set -o igncr`), > which I didn't enable. > Adding `set -o igncr` to the top of the script does the job, however > I'd like to know how many more scri

Re: Script broken after updating bash to 4.3.46-7?

2016-08-26 Thread Gene Pavlovsky
Looks like it's related to a recent change in bash, which is `read` now honors Cygwin-specific `igncr` shell option (`set -o igncr`), which I didn't enable. Adding `set -o igncr` to the top of the script does the job, however I'd like to know how many more scripts are potentially malfunctioning now

Re: Script to Auto CYGWIN -U all environment varialbes

2011-02-08 Thread Andrew Schulman
> Has anyone written anything into their bash profile or whatever that goes > through each windows environment variable currently extant, and resets them > via CYGPATH > > e.g. > > Before, @ start of .bashrc > ETC=C:\WINDOWS\ETC > > After run of .bashrc > ETC=`$(cygpath -u '$ETC')`; EXPORT ETC

Re: Script to Auto CYGWIN -U all environment varialbes

2011-02-07 Thread David Sastre
On Mon, Feb 07, 2011 at 03:36:26PM -0700, Gary Furash wrote: > Has anyone written anything into their bash profile or whatever that goes > through each windows environment variable currently extant, and resets them > via CYGPATH > > Before, @ start of .bashrc > ETC=C:\WINDOWS\ETC > > After run of

Re: Script to save XP Win stuff

2010-12-20 Thread Andrew DeFaria
On 12/20/2010 03:05 PM, jwzumwalt wrote: Thanks! I have other cygwin specific scripts to share. Perhaps we can have the system admin create a "scripts" forum. Cygwin often requires slight tweaking of the scripts (vs unix) so a script section is warrented If you do it right then there's very lit

Re: Script to save XP Win stuff

2010-12-20 Thread jwzumwalt
Thanks! I have other cygwin specific scripts to share. Perhaps we can have the system admin create a "scripts" forum. Cygwin often requires slight tweaking of the scripts (vs unix) so a script section is warrented :) Keith Christian-2 wrote: > > On Sun, Dec 19, 2010 at 12:33 PM, jwzumwalt > wr

Re: Script to save XP Win stuff

2010-12-20 Thread Keith Christian
On Sun, Dec 19, 2010 at 12:33 PM, jwzumwalt wrote: > > I thought I would share a script I use to save my important personal and > config files. > I hope this helps! Nice, I'll try it. Useful as a template, too. =Keith -- Problem reports: http://cygwin.com/problems.html FAQ:

Re: Script questions

2010-05-18 Thread Christopher Faylor
On Mon, May 17, 2010 at 11:35:17PM -0400, Gregg Levine wrote: >Now I can just see CGF posting "Why the are you >bothering us with this?" (Yes I know you would not probably use foul >language online, but, ah, sometimes people do some darned strange >things in e-mail, and then want to have it remove

Re: Script questions

2010-05-17 Thread Jeremy Bopp
On 05/17/2010 10:35 PM, Gregg Levine wrote: > Hello! > For the work I do, building and running the Arduino programs first > from code retreived from SVN and then building it, I am using Cygwin. > Building prior releases worked without complications. > > I now find out that the latest ones are usin

Re: script

2008-07-28 Thread r
On 2008-07-28, René Berber <[EMAIL PROTECTED]> wrote: > Brian Mathis wrote: > >> On Mon, Jul 28, 2008 at 12:15 PM, r <[EMAIL PROTECTED]> wrote: >>> ok, I'm going to learn to manage basic cygwin-linux features >> [...] >>> I saw unlike linux that cygwin does not warn me when there are new >> [...] >

Re: script

2008-07-28 Thread René Berber
Brian Mathis wrote: On Mon, Jul 28, 2008 at 12:15 PM, r <[EMAIL PROTECTED]> wrote: ok, I'm going to learn to manage basic cygwin-linux features [...] I saw unlike linux that cygwin does not warn me when there are new [...] Is there a way ( like in linux ) to send a message to my prompt [..

Re: script

2008-07-28 Thread René Berber
Buchbinder, Barry (NIH/NIAID) [E] wrote: r wrote on Sunday, July 27, 2008 11:11 AM: Saturday 26 July 2008, alle 19:36, René Berber wrote: r wrote: How can I execute a script at boot time ? it's a simple retrieving email script with 'getmail' [snip] An easy way is to use cron, with 'crontab

Re: script

2008-07-28 Thread Brian Mathis
On Mon, Jul 28, 2008 at 12:15 PM, r <[EMAIL PROTECTED]> wrote: > > ok, I'm going to learn to manage basic cygwin-linux features [...] > I saw unlike linux that cygwin does not warn me when there are new [...] > Is there a way ( like in linux ) to send a message to my prompt [...] > > R I think one

Re: script

2008-07-28 Thread r
On Monday 28 July 2008, alle 10:34, Buchbinder, Barry (NIH/NIAID) [E] wrote: > r wrote on Sunday, July 27, 2008 11:11 AM: > > Saturday 26 July 2008, alle 19:36, René Berber wrote: > >> r wrote: > >> > >>> How can I execute a script at boot time ? > >>> it's a simple retrieving email script with '

RE: script

2008-07-28 Thread Buchbinder, Barry (NIH/NIAID) [E]
r wrote on Sunday, July 27, 2008 11:11 AM: > Saturday 26 July 2008, alle 19:36, René Berber wrote: >> r wrote: >> >>> How can I execute a script at boot time ? >>> it's a simple retrieving email script with 'getmail' [snip] >> >> An easy way is to use cron, with 'crontab -e' add a line like this

Re: script

2008-07-27 Thread r
Saturday 26 July 2008, alle 19:36, René Berber wrote: > r wrote: > > >How can I execute a script at boot time ? > >it's a simple retrieving email script with 'getmail' > [snip] > > An easy way is to use cron, with 'crontab -e' add a line like this: > > @reboot /bin/startup_retrieve_mail.sh > /d

Re: script

2008-07-26 Thread René Berber
r wrote: How can I execute a script at boot time ? it's a simple retrieving email script with 'getmail' [snip] An easy way is to use cron, with 'crontab -e' add a line like this: @reboot /bin/startup_retrieve_mail.sh > /dev/null 2>&1 Make sure the script is executable, the redirection is opt

RE: Script utility for cygwin?

2008-05-12 Thread Stepp, Charles
over. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, May 09, 2008 11:40 AM To: cygwin@cygwin.com Subject: RE: Script utility for cygwin? >On Fri, May 09, 2008 at 10:19:39AM -0400, Mark J. Reed wrote: >>On Fri, May 9, 2008 at 10:10 A

RE: Script utility for cygwin?

2008-05-09 Thread Buchbinder, Barry (NIH/NIAID) [E]
Mark J. Reed wrote on Friday, May 09, 2008 12:38 PM: > On Fri, May 9, 2008 at 12:34 PM, Lee Maschmeyer > <[EMAIL PROTECTED]> wrote: >> The thing that puzzles me, as a non-newbie but relatively ignorant >> user, is why >> >> cygcheck -c script >> >> returns nothing. > > Because script is not i

Re: Script utility for cygwin?

2008-05-09 Thread Mark J. Reed
On Fri, May 9, 2008 at 12:42 PM, Lee Maschmeyer <[EMAIL PROTECTED]> wrote: >> Toggle the "View" button until you get to "Full". >> That shows packages in a single alphabetical list. > > It isn't there. The list goes from screen to scsh. Right. Because screen is not a package. It is one file. You

Re: Script utility for cygwin?

2008-05-09 Thread Lee Maschmeyer
Toggle the "View" button until you get to "Full". That shows packages in a single alphabetical list. It isn't there. The list goes from screen to scsh. -- Lee Maschmeyer Computing Center Services Computing and Information Technology Wayne State University Detroit, Michigan, USA -- Unsubscribe

Re: Script utility for cygwin?

2008-05-09 Thread Mark J. Reed
On Fri, May 9, 2008 at 12:11 PM, Greg Chicares <[EMAIL PROTECTED]> wrote: > Toggle the "View" button until you get to "Full". > That shows packages in a single alphabetical list. Helpful tip. Thanks! -- Mark J. Reed <[EMAIL PROTECTED]> -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-

Re: Script utility for cygwin?

2008-05-09 Thread Mark J. Reed
On Fri, May 9, 2008 at 12:34 PM, Lee Maschmeyer <[EMAIL PROTECTED]> wrote: > The thing that puzzles me, as a non-newbie but relatively ignorant user, is > why > > cygcheck -c script > > returns nothing. Because script is not its own package. It's one of the programs included in the util-linux pa

Re: Script utility for cygwin?

2008-05-09 Thread Lee Maschmeyer
The thing that puzzles me, as a non-newbie but relatively ignorant user, is why cygcheck -c script returns nothing. -- Lee Maschmeyer Computing Center Services Computing and Information Technology Wayne State University Detroit, Michigan, USA -- Unsubscribe info: http://cygwin.com/ml

Re: Script utility for cygwin?

2008-05-09 Thread Greg Chicares
On 2008-05-09 15:50Z, Mark J. Reed wrote: > On Fri, May 9, 2008 at 11:39 AM, <[EMAIL PROTECTED]> wrote: >> But, now that I know what Cygwin package it's in, how do I turn that >> into knowing what to look for in Cygwin Setup? > > Well, you look for the package name. You just have to guess what >

Re: Script utility for cygwin?

2008-05-09 Thread Mark J. Reed
On Fri, May 9, 2008 at 11:39 AM, <[EMAIL PROTECTED]> wrote: > But, now that I know what Cygwin package it's in, how do I turn that > into knowing what to look for in Cygwin Setup? Well, you look for the package name. You just have to guess what category it's in. :\ Since it's named "util-linux"

RE: Script utility for cygwin?

2008-05-09 Thread lemons_terry
>On Fri, May 09, 2008 at 10:19:39AM -0400, Mark J. Reed wrote: >>On Fri, May 9, 2008 at 10:10 AM, <[EMAIL PROTECTED]> wrote: >>> Hi >>> >>> Does the 'script' utility exist in cygwin? >>Yes. >> >>> searched the components of the latest distribution but didn't see it. >> >>Well, it's right there i

Re: Script utility for cygwin?

2008-05-09 Thread Christopher Faylor
On Fri, May 09, 2008 at 10:19:39AM -0400, Mark J. Reed wrote: >On Fri, May 9, 2008 at 10:10 AM, <[EMAIL PROTECTED]> wrote: >> Hi >> >> Does the 'script' utility exist in cygwin? >Yes. > >> searched the components of the latest distribution but didn't see it. > >Well, it's right there in /usr/bin/

Re: Script utility for cygwin?

2008-05-09 Thread Mark J. Reed
On Fri, May 9, 2008 at 10:10 AM, <[EMAIL PROTECTED]> wrote: > Hi > > Does the 'script' utility exist in cygwin? Yes. > searched the components of the latest distribution but didn't see it. Well, it's right there in /usr/bin/script on my machine. don't know what package it came from, but it wor

Re: script for installing cygwin?

2007-12-03 Thread Larry Hall (Cygwin)
jameshanley39 wrote: But I just wanted to have what I want installed automatically Not having to go through all the things if i wanted to remove and then install / "reinstall" cygwin. i checked the cygwin FAQ , since before I had only looked at the cygwin user manual. The solution for me i

Re: script for installing cygwin?

2007-12-03 Thread [EMAIL PROTECTED]
Larry Hall (Cygwin) wrote: > jameshanley39 wrote: > > I would like to be able to install cygwin with all the packages I > > want automatically, without having to select them all. > > > > > > (reason is actually because when things go wrong i would like to > > uninstall and reinstall cygwin, and

Re: script for installing cygwin?

2007-11-29 Thread Larry Hall (Cygwin)
jameshanley39 wrote: I would like to be able to install cygwin with all the packages I want automatically, without having to select them all. (reason is actually because when things go wrong i would like to uninstall and reinstall cygwin, and i do not want to go through that screen selecting a

Re: script for cygwin

2007-03-17 Thread Ray Tayek
At 06:51 AM 3/17/2007, you wrote: Hi. . Redirected to the appropriate list. found it. it's in: util-linux thanks On Fri, 16 Mar 2007, Ray Tayek wrote: > hi, looking for this. saw your post on the cygwin list. can you tell me > what package or group this

Re: script for cygwin

2007-03-17 Thread Igor Peshansky
Hi. . Redirected to the appropriate list. On Fri, 16 Mar 2007, Ray Tayek wrote: > hi, looking for this. saw your post on the cygwin list. can you tell me > what package or group this is in? See the FAQ:

Re: script problem

2007-03-03 Thread Lev Bishop
On 3/3/07, Gary R. Van Sickle wrote: > Does running fc-cache speed up your startup? > > Lev It hasn't bothered me enough to even look in to it frankly. My Cygwin interactive shell startup times have been a bit slower than normal for years because I have a bit of Perl/Cygpath magic in my bash_pr

RE: script problem

2007-03-03 Thread Gary R. Van Sickle
> From: Lev Bishop > Sent: Saturday, March 03, 2007 2:42 PM > Subject: Re: script problem > > On 3/2/07, Gary R. Van Sickle wrote: > > The only downside to the switch that I've experienced is that my > > interactive shells take quite a bit longer to come up

Re: script problem

2007-03-03 Thread Lev Bishop
On 3/2/07, Gary R. Van Sickle wrote: The only downside to the switch that I've experienced is that my interactive shells take quite a bit longer to come up, but I think that may have something to do with my setup rather than something intrinsic to the rxvt-unicode+Xserver setup. My usage pattern

Re: script problem

2007-03-02 Thread Frank Fesevur
At 2-3-2007 17:27, Asher Vilensky wrote: Any other rxvt tips would be appreciated. Create/edit the .Xdefaults file to do your settings and not command line options. When you use the chere or other things that start rxvt you will always have the same rxvt appearance. Regards, Frank -- Unsu

Re: script problem

2007-03-02 Thread Matt Wozniski
On 3/2/07, Gary R. Van Sickle wrote: Actually the advantages tend to go the other way at this point. The Cygwin non-X rxvt is no longer being actively maintained upstream. rxvt-unicode is being actively maintained both upstream and here in Cygwinton. It looks nicer (fonts appear to get antiali

RE: script problem

2007-03-02 Thread Gary R. Van Sickle
> From: Marco Atzeri > Sent: Friday, March 02, 2007 9:05 AM > Subject: Re: script problem > > > --- Asher Vilensky > > > Thanks for the kind advice. I indeed installed rxvt. I've noticed > > that rxvt does not save me much memory over XWin. > >

RE: script problem

2007-03-02 Thread Gary R. Van Sickle
> From: Asher Vilensky > Sent: Friday, March 02, 2007 7:32 AM > Subject: Re: script problem > > Thanks for the kind advice. I indeed installed rxvt. I've > noticed that rxvt does not save me much memory over XWin. > Approx 10MB (rxvt) over 20MB (XWin). No biggi

RE: script problem

2007-03-02 Thread Stepp, Charles
Asher Vilensky [mailto:[EMAIL PROTECTED] Sent: Friday, March 02, 2007 11:28 AM To: Marco Atzeri; cygwin@cygwin.com Subject: Re: script problem Ok, good point. You convinced me. Gone is X. One annoying thing I've noticed is that the backspace button doesn't work in vi. It produces '^

Re: script problem

2007-03-02 Thread DePriest, Jason R.
On 3/2/07, Asher Vilensky wrote: Thanks. These were already set in .vimrc. And, they don't work in rxvt, but do work in an xterm. :-( Meanwhile, I found out I ***have to*** use XWin since I'm displaying X applications on my XP. So I'm back to the very original question: How to automaticall

Re: script problem

2007-03-02 Thread Asher Vilensky
Thanks. These were already set in .vimrc. And, they don't work in rxvt, but do work in an xterm. :-( Meanwhile, I found out I ***have to*** use XWin since I'm displaying X applications on my XP. So I'm back to the very original question: How to automatically kill XWin.exe when WIndows shutdow

Re: script problem

2007-03-02 Thread DePriest, Jason R.
On 3/2/07, DePriest, Jason R. wrote: On 3/2/07, Asher Vilensky wrote: > Ok, good point. You convinced me. Gone is X. > One annoying thing I've noticed is that the backspace button doesn't > work in vi. It produces '^?' character. Can somebody remind me how to > set this right in .vimrc or wh

Re: script problem

2007-03-02 Thread DePriest, Jason R.
On 3/2/07, Asher Vilensky wrote: Ok, good point. You convinced me. Gone is X. One annoying thing I've noticed is that the backspace button doesn't work in vi. It produces '^?' character. Can somebody remind me how to set this right in .vimrc or whatever? I've been away from Unix/Linux for a

Re: script problem

2007-03-02 Thread Matthew Woehlke
Asher Vilensky wrote: One annoying thing I've noticed is that the backspace button doesn't work in vi. It produces '^?' character. Can somebody remind me how to set this right in .vimrc or whatever? I've been away from Unix/Linux for a while. My first guess would be 'stty erase'. Failing tha

Re: script problem

2007-03-02 Thread Asher Vilensky
Ok, good point. You convinced me. Gone is X. One annoying thing I've noticed is that the backspace button doesn't work in vi. It produces '^?' character. Can somebody remind me how to set this right in .vimrc or whatever? I've been away from Unix/Linux for a while. Any other rxvt tips would

Re: script problem

2007-03-02 Thread Marco Atzeri
--- Asher Vilensky <[EMAIL PROTECTED]> ha scritto: > Thanks for the kind advice. I indeed installed > rxvt. I've noticed > that rxvt does not save me much memory over XWin. > Approx 10MB (rxvt) > over 20MB (XWin). No biggie. Are there any other > advantages of using > rxvt over XWin? If so

Re: script problem

2007-03-02 Thread Asher Vilensky
Thanks for the kind advice. I indeed installed rxvt. I've noticed that rxvt does not save me much memory over XWin. Approx 10MB (rxvt) over 20MB (XWin). No biggie. Are there any other advantages of using rxvt over XWin? If so, what are they? BTW, nobody has yet to suggest a solution to my o

Re: script problem

2007-03-01 Thread Larry Hall (Cygwin)
Asher Vilensky wrote: 2. Which cygwin package contain rxvt? -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd.

Re: script problem

2007-03-01 Thread Asher Vilensky
1. Where should I place the Stop command? I would like to keep everything automated and seemless. 2. Which cygwin package contain rxvt? Thanks. --- Andrew DeFaria <[EMAIL PROTECTED]> wrote: > Asher Vilensky wrote: > > I'm running my Xcygwin on Windows XP. I have an xterm open > > automatic

Re: script problem

2007-03-01 Thread Andrew DeFaria
Asher Vilensky wrote: I'm running my Xcygwin on Windows XP. I have an xterm open automatically when I start the machine. The problem is when I'm shutting the machine down. It's giving me the window of "end program now". I think it's waiting for XWin to die. I can see a message about it in the

RE: script in cygwin

2006-04-20 Thread Igor Peshansky
On Thu, 20 Apr 2006, Igor Peshansky wrote: > On Thu, 20 Apr 2006, Dave Korn wrote: > > > On 20 April 2006 09:09, Jim Easton wrote: > > > > > Hi All, > > > > > > A way back (22 Feb 2006) I asked about script in cygwin. > > ${PACKAGE} > > > On my last update

RE: script in cygwin

2006-04-20 Thread Igor Peshansky
On Thu, 20 Apr 2006, Dave Korn wrote: > On 20 April 2006 09:09, Jim Easton wrote: > > > Hi All, > > > > A way back (22 Feb 2006) I asked about script in cygwin. > ${PACKAGE} > > On my last update lo and behold in comes script - how nice. :-) >

RE: script in cygwin

2006-04-20 Thread Dave Korn
On 20 April 2006 09:09, Jim Easton wrote: > Hi All, > > A way back (22 Feb 2006) I asked about script in cygwin. ${PACKAGE} > On my last update lo and behold in comes script - how nice. :-) ${PACKAGE} > I don't

Re: script in cygwin

2006-04-20 Thread Jim Easton
Hi All, A way back (22 Feb 2006) I asked about script in cygwin. On my last update lo and behold in comes script - how nice. :-) I don't know who to thank but thank you nevertheless. I notice one minor difference between the cygwin version and the version I am used to on several Unix OSs. That

Re: script in cygwin

2006-02-25 Thread Jim Easton
On Fri, 24 Feb 2006 Igor Peshansky wrote: > On Fri, 24 Feb 2006, Jim Easton wrote: > > On Thu, 23 Feb 2006 Igor Peshansky wrote: > > > On Wed, 22 Feb 2006, Jim Easton wrote: > > > > > > > Does cygwin have a program called "script". It is a program > > > > which records terminal traffic in a file.

Re: script in cygwin

2006-02-24 Thread Igor Peshansky
On Fri, 24 Feb 2006, Jim Easton wrote: > Hi, > > On Thu, 23 Feb 2006 Igor Peshansky wrote: > > On Wed, 22 Feb 2006, Jim Easton wrote: > > > > > Does cygwin have a program called "script". It is a program > > > which records terminal traffic in a file. > > > ... > > > ... > > IIRC, "script" is ava

Re: script in cygwin

2006-02-24 Thread Jim Easton
Hi, On Thu, 23 Feb 2006 Igor Peshansky wrote: > On Wed, 22 Feb 2006, Jim Easton wrote: > > > Does cygwin have a program called "script". It is a program > > which records terminal traffic in a file. > > ... > ... > IIRC, "script" is available on cygwin-ports[*], but note that cygwin-ports > ha

Re: script in cygwin

2006-02-23 Thread Yaakov S (Cygwin Ports)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steven O'Brien wrote: > I have a patch for this package that enables building on cygwin of the > following programs as used in fedora core 4: > arch > chkdupexe > hexdump > line > logger > pg > renice > s

Re: script in cygwin

2006-02-23 Thread Yaakov S (Cygwin Ports)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Igor Peshansky wrote: > IIRC, "script" is available on cygwin-ports[*], but note that cygwin-ports > has its own support list. Yaakov did say that he'd be ok with someone > else proposing to maintain it -- are you willing? > Igor > [*] See, e.g.

Re: script in cygwin

2006-02-23 Thread Steven O'Brien
On Wed, 22 Feb 2006, Jim Easton wrote: > Does cygwin have a program called "script". It is a program > which records terminal traffic in a file. > > If so what would I select in setup to get it? Fedora Core 4 gets this program from a package called "util-linux", which I guess is roughly equivale

Re: script in cygwin

2006-02-23 Thread Igor Peshansky
On Wed, 22 Feb 2006, Jim Easton wrote: > Does cygwin have a program called "script". It is a program > which records terminal traffic in a file. > > If so what would I select in setup to get it? . According to the package search page,

Re: Script stackdumps ftp://sunsite.dk/projects/cygwinports/release/script/

2005-09-17 Thread Gerrit P. Haase
Reid Thompson wrote: Yaakov S wrote: Gerrit P. Haase wrote: script does not build out of the box. I ported another similar tool, I believe Reini has done something similar. Unfortunately I cannot find the announcement / bookmark / package name / patch. As have I: ftp://sunsite.dk/proje

Re: script hangs with 20050716/20050826 snapshot but not with 1.5.18 dll

2005-08-29 Thread Volker Quetschke
Christopher Faylor wrote: On Sun, Aug 28, 2005 at 12:45:45AM -0400, Volker Quetschke wrote: The following script hangs after running a short while when using the 20050716/20050826 snapshots, but works with the 1.5.18 dll. --- start tcsh_hang.csh --- #!/bin/tcsh while (1) # perl -e 'print("12

Re: script hangs with 20050716/20050826 snapshot but not with 1.5.18 dll

2005-08-28 Thread Christopher Faylor
On Sun, Aug 28, 2005 at 12:45:45AM -0400, Volker Quetschke wrote: >The following script hangs after running a short while when using >the 20050716/20050826 snapshots, but works with the 1.5.18 dll. > >--- start tcsh_hang.csh --- >#!/bin/tcsh >while (1) ># perl -e 'print("12\n");' |& /usr/bin/grep

Re: "script" program

2005-01-27 Thread Yaakov Selkowitz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: | Hello, | | I know this question has only been recently on this list, but I can't | seem to find the answer anymore, and the cygwin mail archive | is dead slow this morning, so here I go : | | In which package is the 'script' u

Re: script: unknown command

2005-01-10 Thread kurtz
THUFIR HAWAT wrote: how is "script" enabled, pls? There is a script package as part of [1]this project. Just installed it and seems to work as expected. 1. http://cygwin-ports.sourceforge.net/ -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.

Re: script replacement: ttyrec-1.0.6 ported

2004-10-13 Thread Christopher Faylor
On Wed, Oct 13, 2004 at 12:42:52PM +0200, Gerrit P. Haase wrote: >sionce it is requested often, I ported a replacement for script: >ttyrec-1.0.6: http://namazu.org/~satoru/ttyrec/ > >Patch is attached. I don't recall script being requested often but if it was why wouldn't we just package up script

Re: script replacement: ttyrec-1.0.6 ported

2004-10-13 Thread Reini Urban
Gerrit P. Haase schrieb: since it is requested often, I ported a replacement for script: ttyrec-1.0.6: http://namazu.org/~satoru/ttyrec/ Patch is attached. Great! Don't we want that as package? I do. Maybe with the java class ttyplayer.class and some example data also. In Debian it's in bsdutils, b

RE: script command

2004-06-15 Thread Warren, Matthew \(Retail\)
This list can be very amusing. Surely this is off-topic? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Dessent Sent: Friday, June 11, 2004 9:43 PM To: [EMAIL PROTECTED] Subject: Re: script command Joshua Daniel Franklin wrote: > > The poi

Re: script command

2004-06-14 Thread Dr. Volker Zell
> Mike Kenny writes: > Brian, > thanks for this link. This is, almost, exactly what I was looking for. But, my compile > fails as it can't (neither can I) find libutil.h. Could you point me to a similar link for > this, or e-mail a copy directly to me? Just uncomment it, i

RE: script command

2004-06-14 Thread Mike Kenny - BCX - Infrastructure Services
; To: [EMAIL PROTECTED] > Subject: Re: script command > > > Mike Kenny - BCX - Infrastructure Services wrote: > > > -Original Message- > > From: Brian Dessent [mailto:[EMAIL PROTECTED] > > Umm, PCYMTNQREAIYR. Thanks. > > (http://www.cygwin.com/acron

Re: script command

2004-06-14 Thread Brian Dessent
Mike Kenny - BCX - Infrastructure Services wrote: > -Original Message- > From: Brian Dessent [mailto:[EMAIL PROTECTED] Umm, PCYMTNQREAIYR. Thanks. (http://www.cygwin.com/acronyms/#PCYMTNQREAIYR) > > "Warren, Matthew (Retail)" wrote: > > > > > Does cygwin provide support the script comm

RE: script command

2004-06-14 Thread Mike Kenny - BCX - Infrastructure Services
ian Dessent [mailto:[EMAIL PROTECTED] > Sent: Friday, June 11, 2004 2:21 PM > To: [EMAIL PROTECTED] > Subject: Re: script command > > > "Warren, Matthew (Retail)" wrote: > > > I thought this was it, or am I missing something? > > The point was that your o

OT: signatures (RE: script command)

2004-06-12 Thread John Morrison
> From: Brian Dessent > > What ever happened to the internet where netiquette actually meant > anything? You know, that whole thing about keeping signatures to less > than 4 lines x 72 chars, not quoting entire messages, not sending HTML > email to public lists, and so on? Unfortunately I have a

Re: script command

2004-06-11 Thread Brian Dessent
Joshua Daniel Franklin wrote: > > The point was that your original message had 1 line of signal > > and 29 lines of noise. > > Um, the original email had a different person's name, different email > address, and different company disclaimer. The only similarities are > that it's in the same threa

Re: script command

2004-06-11 Thread Joshua Daniel Franklin
> The point was that your original message had 1 line of signal > and 29 lines of noise. Um, the original email had a different person's name, different email address, and different company disclaimer. The only similarities are that it's in the same thread and has a long disclaimer. A recent arti

Re: script command

2004-06-11 Thread Brian Dessent
"Warren, Matthew (Retail)" wrote: > I thought this was it, or am I missing something? The point was that your original message had 1 line of signal and 29 lines of noise. > Does cygwin provide support the script command? No, it does not in the net release. However, see for example: http://marc

RE: script command

2004-06-11 Thread Warren, Matthew (Retail)
I thought this was it, or am I missing something? Does cygwin provide support the script command? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Dessent Sent: Friday, June 11, 2004 4:27 AM Cc: 'Cygwin (E-mail)' Subject: Re: script com

Re: script command

2004-06-10 Thread Brian Dessent
Dave Korn wrote: > Sorry, but in accordance with your disclaimer I have deleted your mail as > reading it would probably constitute an "unauthorised use" on my part. There was a question in there? I thought he was posting his resume to the list... Brian -- Unsubscribe info: http://cygwi

RE: script command

2004-06-10 Thread Dave Korn
> -Original Message- > From: cygwin-owner On Behalf Of Mike Kenny - BCX - Infrastructure Services > Sent: 10 June 2004 09:31 > To: Cygwin (E-mail) > Subject: script command Sorry, but in accordance with your disclaimer I have deleted your mail as reading it would probably constitute an

Re: Script .bat launched before login to Windows

2003-06-30 Thread Larry Hall
roman_listas optenet wrote: Hi, I've created a script to do some ftp mirroring (by using rsync, through ssh). The .bat works perfectly if launched from a Windows session (logged as Administrator). Basically, the .bat is similar to cygwin.bat, but I pass a .sh script to the last command (the bash

Re: Script program

2003-06-23 Thread Christopher Faylor
On Mon, Jun 23, 2003 at 10:28:44PM -0500, William J. Moulton wrote: >Is there a cygwin version of the script utility available? > >William J. Moulton Wrong mailing list. Redirected. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/proble

Re: [SCRIPT] Windows system dll function addresses

2002-12-13 Thread Randall R Schulz
Joe, You forgot to put some indication of your authorship into the header comments. I added a simple "Author: Joe Buehler" line when I copied the code to a file. I also wanted to add a URL referencing the message on the Cygwin mailing list archive, so I went to the archives, found the message

Re: [SCRIPT] Windows system dll function addresses

2002-12-13 Thread Elfyn McBratney
Cool this is exactly what I need to debug something I've written. I had a gui app that did this but it was *very* slow... Thanks for sharing ;) Elfyn [EMAIL PROTECTED] --- Joe Buehler <[EMAIL PROTECTED]> wrote: >Sometimes it is useful to be able to tell what Windows >DLL functions are at the t

Re: [SCRIPT] Windows system dll function addresses

2002-12-13 Thread Christopher Faylor
On Fri, Dec 13, 2002 at 09:16:58AM -0500, Joe Buehler wrote: >Sometimes it is useful to be able to tell what Windows >DLL functions are at the top of a stack trace in gdb >(not everyone can remember functions by address instead >of name). > >Here is a perl script to dump a sorted list of symbol >ad

Re: Script Doesn't Work Correctly with Cron

2002-12-12 Thread Igor Pechtchanski
On Thu, 12 Dec 2002, Buck Turgidson wrote: > I have a script that works when I run it from the command line, but when it > is executed with cron, it produces a null file. I am sure that cron is > executing it because it creates the file. It is just not populated. > > Here is the script. I want

  1   2   >