RE: possible worm in cygwin

2002-02-15 Thread Ebrey, Carl

You might find the following URLs useful:

http://sources.redhat.com/ml/cygwin/2002-02/msg00730.html

http://sources.redhat.com/ml/cygwin/2002-02/msg00721.html

http://sources.redhat.com/ml/cygwin/2002-02/msg00690.html

http://sources.redhat.com/ml/cygwin/2002-02/msg00681.html

From what I can see they are the starts of relevant threads already
discussed on this list about this very same topic.  It's a pity your search
around for more info didn't take you to the mailing list archive really,
because you would have saved yourself some bandwidth :P

Sorry if this mail sounds a bit blunt, but there's been quite a lot of
traffic on here of late regarding this.

Carl


 -Original Message-
 From: Chris Faulkner [mailto:[EMAIL PROTECTED]]
 Sent: 15 February 2002 13:49
 To: [EMAIL PROTECTED]
 Subject: possible worm in cygwin
 
 
 Hello
 
 I've searched around for more about this but only found a 
 message on comp.security.ssh which said it might be a false 
 alarm but was not conclusive.
 
 Whilst doing a Full SystemScan, I got a message from Norton Antivirus 
 
 The file D:\cygwin\bin\cygz.dll is infected with
 the Backdoor.EggHead virus. Unable to repair this file.
 
 Is this a false alarm ? Does anyone know anything about this ?
 
 
 Thanks
 
 Chris
 
 Earn all you can. But not at the expense of conscience, not 
 at the expense of our neighbour's wealth, not at the expense 
 of our neighbour's health. John Wesley  
 
 
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Bug reporting: http://cygwin.com/bugs.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




RE: Syntax error on compile

2002-01-30 Thread Ebrey, Carl

 -Original Message-
 From: Christopher Faylor [mailto:[EMAIL PROTECTED]]
 Sent: 30 January 2002 16:00
 To: [EMAIL PROTECTED]
 Subject: Re: Syntax error on compile
 
 
 On Wed, Jan 30, 2002 at 02:50:51PM +0530, Rajat Bawa wrote:
 Sorry to mail you directly ..
 
 Hope you won't mind telling me the e-mail address at which i 
 can mail my
 queries (the same at which you have been mailing your 
 answers/queries) .. as
 [EMAIL PROTECTED] is bouncing the mails back
 
 Anyone else find this message just a tad confusing?

Not really.  As I see it Rajat's been trying to send mail to
[EMAIL PROTECTED] but getting bounces.  Therefore (s)he's mailed you
directly to check the address or to see if there's another that (s)he should
be mailing too.  That's what I got out of it anyway, n'owt to say that I'm
actually right :)

Carl
-- 
What shall we do today?  I know, let's write a disclaimer...


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




RE: 1.3.9: java with cygdrive

2002-01-29 Thread Ebrey, Carl

 -Original Message-
 From: Christopher Faylor [mailto:[EMAIL PROTECTED]]
 Sent: 29 January 2002 17:02
 To: [EMAIL PROTECTED]
 Subject: Re: 1.3.9: java with cygdrive

snip

 
 It sounds like 'jar' is not a cygwin executable (not surprising) and,
 so, does not understand /cygdrive .  Is there something else going on
 here?
 

Indeed, Mr Faylor is, of course, right here.  cygpath -help Is Your Friend.

Carl
-- 
Here comes the disclaimer...


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




RE: Edit file

2002-01-11 Thread Ebrey, Carl

This is rather off topic since it's not a cygwin problem, IMO, but I'll help
you anyway because I'm nice like that :P

What you probably want is:

bash$ cat visualiser/PositionData.java | sed s!import
visualiser.HostIDVPatcher;!//import visualiser.HostIDVPatcher;!  out.txt

I've used ! instead of / because it saves you having to escape the // and
sed lets you use almost any delimiter that you want.  I haven't actually
tested this and so I can't vouch 100% that it'll work, however it should.
If you carry on having problems then email me privately and I'll see what I
can do to help you out.

HTH,

Carl

-Original Message-
From: Rob [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 11, 2002 1:48 PM
To: Cygwin
Subject: Edit file


Howdy!

I would like to make a script that can change a line in a file.. commenting
out a line in a java source file to be precise.

I would like to look for this line:
  import visualiser.HostIDVPatcher;
and edit it to this:
  // import visualiser.HostIDVPatcher;

Can I do this?

I tried using sed with this line:

cat visualiser/PositionData.java | s/import
visualiser.HostIDVPatcher;/\/\/import visualiser.HostIDVPatcher;/ | out.txt

and this was what I got:

r;/\/\/import visualiser.HostIDVPatcher;/ | out.txt
BASH: s/import: No such file or directory
BASH: ///import: No such file or directory
BASH: /: is a directory
BASH: out.txt: command not found

Thanks for any help!

Rob



:-)
;-
:-]


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/




RE: bash completion (was: RE: Units)

2001-12-19 Thread Ebrey, Carl

I have to admit that I thought it was quite confusing too.  Perhaps if it
said, This rule also applies to Cygwin itself because Cygwin is also a
package?

Just my 2p/c/whatever.

Carl

-Original Message-
From: Christopher Faylor [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 19, 2001 4:13 PM
To: [EMAIL PROTECTED]
Subject: Re: bash completion (was: RE: Units)

snip

I'm not sure how you got that impression.  This includes the cygwin package
itself would be applied to If your package is dependent on a file.  So,
if
your package is not dependent on anything in the cygwin package there is
not reason to include the cygwin package.

If the intent was to say Always include the cygwin package then it would
have been a lot clearer to say that.

I'd clarify this if I understood why this is confusing.

cgf


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF



RE: bash completion (was: RE: Units)

2001-12-19 Thread Ebrey, Carl

The same could be said for many people where the sender is
[EMAIL PROTECTED]

Carl

-Original Message-
From: Christopher Faylor [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 19, 2001 4:31 PM
To: [EMAIL PROTECTED]
Subject: Re: bash completion (was: RE: Units)


On Wed, Dec 19, 2001 at 04:25:36PM -, Ebrey, Carl wrote:
Is there no way that the list program can rewrite the reply-to line?  That
would Make Things Easier(TM), IMHO of course :)

How about if I just block any email that mentions Reply-To?  That
would make things a lot easier for me.

cgf


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF



RE: bash completion (was: RE: Units)

2001-12-19 Thread Ebrey, Carl

That's what the webpage implies.  If that's not what it means, then surely
you have to agree that the page is confusing.

Carl

-Original Message-
From: Christopher Faylor [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 19, 2001 4:30 PM
To: [EMAIL PROTECTED]
Subject: Re: bash completion (was: RE: Units)


On Wed, Dec 19, 2001 at 04:21:17PM -, Ebrey, Carl wrote:
I have to admit that I thought it was quite confusing too.  Perhaps if it
said, This rule also applies to Cygwin itself because Cygwin is also a
package?

Now, *that's* confusing.

So the cygwin package should say

@ cygwin
requires: cygwin

?

cgf


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF



RE: bash completions

2001-12-18 Thread Ebrey, Carl

Well, I've just taken a look at this and it's groovy.  I think any froody
dude who knows where his towel is should have this...

Carl :)

-Original Message-
From: Morrison, John [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 18, 2001 9:23 AM
To: '[EMAIL PROTECTED]'
Subject: bash completions


Would folks like to consider adding this to the distribution...?

http://www.caliban.org/bash/index.shtml#completion

It's a file of autocompletions, for example, typing ssh [tab][tab] lists (or
completes) hostnames based on the contents of your known_hosts files.

J. 


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF



RE: Units

2001-12-17 Thread Ebrey, Carl

Oops.  Having actually read the new setup.html I see that the @ line is now
optional.  Okay, so now I feel stupid and I shall see to it that I get a
severe beating in order to ensure that this never happens again.

Sorry 'bout that.

Carl

-Original Message-
From: Ebrey, Carl [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 17, 2001 11:29 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Units


erm, I should probably add that the actual setup.hint file /does/ have @
units as the first line.  Just for clarity, and all her friends :)

Carl

-Original Message-
From: Morrison, John [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 17, 2001 11:26 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Units


Ah, sorry, I reply'ed to the person - not the list.  Stupid Outlook.

Here's the setup.hints file embeded :)

sdesc: Converts between different systems of units.
ldesc: Units converts between different systems of units.
GNU units program converts quantities expressed in various scales
to their equivalents in other scales.  The units program can only
handle multiplicative scale changes.  For example, it cannot convert
Celsius to Fahrenheit but it can convert temperature differences
between those temperature scales.
test: 1.77-1
category: Utils
requires: cygwin

Thanks for pointing this out.

J.

 -Original Message-
 From: Robert Collins [mailto:[EMAIL PROTECTED]]
 Sent: Monday, 17 December 2001 11:22 am
 To: Morrison, John
 Cc: '[EMAIL PROTECTED]'
 Subject: RE: Units
 
 
 On Mon, 2001-12-17 at 22:20, Morrison, John wrote:
  Is anybody interested in this program?
  
  http://www.straylight.eu.org/~carl/units/
  
  J.
 http://cygwin.com/ml/cygwin-apps/2001-12/msg00244.html is the last
 reference, where you committed to resending the ITP (intent 
 to package)
 with the setup.hint inline rather than attached.
 
 Rob
 


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF



Bounced announcement

2001-12-13 Thread Ebrey, Carl

Hi,

I tried to send a mail to cygwin-announce this morning to announce FIGlet.
However it just got rejected by the cygwin-announce moderator with no
reason.  Who's the moderator who rejected it and could he/she explain why so
I can see about correcting any errors please?

Thanks,

Carl


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF



RE: FIGlet (again)

2001-12-12 Thread Ebrey, Carl

-Original Message-
From: Corinna Vinschen [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 12, 2001 4:16 PM
To: '[EMAIL PROTECTED]'
Subject: Re: FIGlet (again)

 Hey!  What a question!  Sure we are really happy to get any help.
 Documentation is some of the stuff where a helping hand is always 
 welcome.

I'll take that as a yes then :)  Like I said, I'm a bit busy at the moment
with other things but I'll give you a shout when I've got some time
(probably early January the way things are going here).

Carl


===
Information in this email and any attachments are confidential, and may
not be copied or used by anyone other than the addressee, nor disclosed
to any third party without our permission.  There is no intention to
create any legally binding contract or other commitment through the use
of this email.

Experian Limited (registration number 653331).  
Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF