public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* bash -s from .bat file
@ 1998-07-13  1:02 earl.chew
  0 siblings, 0 replies; 12+ messages in thread
From: earl.chew @ 1998-07-13  1:02 UTC (permalink / raw)
  To: gnu-win32

I have a batch file which I wrote for b18. It basically
reads:

sh -s %1 < \a\b\c\foo.sh

This worked as expected, but fails under b19.1. I notice

a. I must use bash instead of sh.
b. Even after using bash, the contents of the script
   are not read and executed correctly. Weird things
   happen (eg : causes much confusion).

Using:

sh //e/a/b/c/foo.sh %1

appears to work... but unfortunately is not drive
independent :-(

Can anyone explain what's going on?

Earl



-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
  1998-07-15  9:48 Earnie Boyd
  1998-07-15 20:50 ` Earl Chew
@ 1998-07-20 14:18 ` Michael Hirmke
  1 sibling, 0 replies; 12+ messages in thread
From: Michael Hirmke @ 1998-07-20 14:18 UTC (permalink / raw)
  To: gnu-win32

Earl Chew [earl_chew@hp.com] wrote:

[...]
>I see. I can't set CYGWIN32 in 19.1 -- it causes cygwin32 to crash --
>this is mentioned in the faq :-(

Get the latest coolview dll from Sergey:
   http://miracle.geol.msu.ru/sos/ !

With this beast you can avoid the crashes and set CYGWIN32 env var.

[...]
>Thanks.
>
>Earl

Bye.
Michael.
--
Michael Hirmke           | Telefon +49 (911) 557999
Georg-Strobel-Strasse 81 | FAX     +49 (911) 557664
90489 Nuernberg          | E-Mail  mailto:mh@mike.franken.de
                         | WWW     http://aquarius.franken.de/
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
  1998-07-16 14:33   ` Mikey
@ 1998-07-19 17:42     ` Earl Chew
  0 siblings, 0 replies; 12+ messages in thread
From: Earl Chew @ 1998-07-19 17:42 UTC (permalink / raw)
  To: jeffdbREMOVETHIS; +Cc: gnu-win32

Mikey wrote:
> your CYGWIN32 env var
> needs to be set to binmode
> and you need to get rid of \r
> from foo.sh.

I see. I can't set CYGWIN32 in 19.1 -- it causes cygwin32 to crash --
this is mentioned in the faq :-(

I'll try fiddling the file to make it binary (no \r).

> or you need to set nobinmode
> and make sure foo.sh has \r\n

Thanks.

Earl
-- 
>----------------------------------------------------------------------+
> Earl Chew                              mailto:earl_chew@hp.com       |
> Hewlett-Packard Australia              Tel:   +61 3 9210 5528        |
> Advanced Networks Division             Fax:   +61 3 9210 5550        |
> 347 Burwood Highway                    GPS:   37 51'46"S 145 10'03"E |
> Burwood East, Victoria 3151, Australia                               |
>----------------------------------------------------------------------+
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* RE: bash -s from .bat file
@ 1998-07-17 18:55 Sergey Okhapkin
  0 siblings, 0 replies; 12+ messages in thread
From: Sergey Okhapkin @ 1998-07-17 18:55 UTC (permalink / raw)
  To: earl, earnie_boyd, 'Larry Hall'; +Cc: gnu-win32

Larry Hall wrote:
> >I've done some more experimenting. Here is a small shell script,
> >c:\foo.sh:
> >
> >: bar=1
> >echo Hello
> >
> >I type:
> >
> >C:\>bash -s < \foo.sh
> >Hello
> >: command not found
> >
> What versions are you running for Cygwin and bash?  I'm running Cygwin b19.1
> with something close to Sergey's version.  bash is 2.01.1.  I'm also using
> binary mounts on NT (4.0 + sp3).  
  ^^^^^^^^^^^^^

It's the key word.

-- 
Sergey Okhapkin, http://www.lexa.ru/sos
Moscow, Russia


-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
  1998-07-15 20:50 ` Earl Chew
  1998-07-16 14:33   ` Mikey
@ 1998-07-16 17:13   ` Larry Hall
  1 sibling, 0 replies; 12+ messages in thread
From: Larry Hall @ 1998-07-16 17:13 UTC (permalink / raw)
  To: earl, earnie_boyd; +Cc: gnu-win32

At 10:10 AM 7/16/98 +1000, Earl Chew wrote:
>Earnie Boyd wrote:
>> > This is probably true (I haven't tried it yet), but doesn't really
>> > answer the question why foo.bat containing
>> >
>> > sh -s %1 < \a\b\c\foo.sh
>> >
>> > run from a Win32 command shell doesn't work on b19.
>> >
>> 
>> It is most likely because sh which is a port of linuxes ash ends up
>> trying to open abcfoo.sh instead of \\a\\b\\c\\foo.sh.
>
>Sorry, I meant to write:
>
>bash -s %1 < \a\b\c\foo.sh
>
>I can understand reasons why ash doesn't work --- but I would
>have thought that bash would be ok.
>
>I've done some more experimenting. Here is a small shell script,
>c:\foo.sh:
>
>: bar=1
>echo Hello
>
>I type:
>
>C:\>bash -s < \foo.sh
>Hello
>: command not found
>
>C:\>C:\tmp>bash \foo.sh
>Hello
>
>It turns out that I get the same behaviour if I move this to e:\foo.sh
>and on e: drive type:
>
>E:\vob>bash -s < \foo.sh
>Hello
>: command not found
>
>E:\vob>bash \foo.sh
>\foo.sh: \foo.sh: No such file or directory
>
>Note that bash is unable to find foo.sh using the drive relative Win32
>path name.
>
>Earl
>-- 
>>----------------------------------------------------------------------+
>> Earl Chew                              mailto:earl_chew@hp.com       |
>> Hewlett-Packard Australia              Tel:   +61 3 9210 5528        |
>> Advanced Networks Division             Fax:   +61 3 9210 5550        |
>> 347 Burwood Highway                    GPS:   37 51'46"S 145 10'03"E |
>> Burwood East, Victoria 3151, Australia                               |
>>----------------------------------------------------------------------+

You have something set improperly because all this works for me fine:

E:\>cat foo.sh

: bar=1
echo Hello


E:\>bash -s <\foo.sh
Hello

E:\>bash \foo.sh
Hello

What versions are you running for Cygwin and bash?  I'm running Cygwin b19.1
with something close to Sergey's version.  bash is 2.01.1.  I'm also using
binary mounts on NT (4.0 + sp3).  


Larry Hall                              lhall@rfk.com
RFK Partners, Inc.                      (781) 239-1053
8 Grove Street                          (781) 239-1655 - FAX
Wellesley, MA  02181                    http://www.rfk.com
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
  1998-07-15 20:50 ` Earl Chew
@ 1998-07-16 14:33   ` Mikey
  1998-07-19 17:42     ` Earl Chew
  1998-07-16 17:13   ` Larry Hall
  1 sibling, 1 reply; 12+ messages in thread
From: Mikey @ 1998-07-16 14:33 UTC (permalink / raw)
  To: earl, gnu-win32

your CYGWIN32 env var
needs to be set to binmode
and you need to get rid of \r
from foo.sh.

or you need to set nobinmode
and make sure foo.sh has \r\n

if \a\b\c\ is ANYWHERE in your mount table,
you need to make sure the mount entry matches the mode of
foo.sh, either \n or \r\n

mixing them won't work.

On Thu, 16 Jul 1998 10:10:44 +1000, you wrote:

>Earnie Boyd wrote:
>> > This is probably true (I haven't tried it yet), but doesn't really
>> > answer the question why foo.bat containing
>> >
>> > sh -s %1 < \a\b\c\foo.sh
>> >
>> > run from a Win32 command shell doesn't work on b19.
>> >
>> 
>> It is most likely because sh which is a port of linuxes ash ends up
>> trying to open abcfoo.sh instead of \\a\\b\\c\\foo.sh.
>
>Sorry, I meant to write:
>
>bash -s %1 < \a\b\c\foo.sh
>
>I can understand reasons why ash doesn't work --- but I would
>have thought that bash would be ok.
>
>I've done some more experimenting. Here is a small shell script,
>c:\foo.sh:
>
>: bar=1
>echo Hello
>
>I type:
>
>C:\>bash -s < \foo.sh
>Hello
>: command not found
>
>C:\>C:\tmp>bash \foo.sh
>Hello
>
>It turns out that I get the same behaviour if I move this to e:\foo.sh
>and on e: drive type:
>
>E:\vob>bash -s < \foo.sh
>Hello
>: command not found
>
>E:\vob>bash \foo.sh
>\foo.sh: \foo.sh: No such file or directory
>
>Note that bash is unable to find foo.sh using the drive relative Win32
>path name.
>
>Earl

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
  1998-07-15  9:48 Earnie Boyd
@ 1998-07-15 20:50 ` Earl Chew
  1998-07-16 14:33   ` Mikey
  1998-07-16 17:13   ` Larry Hall
  1998-07-20 14:18 ` Michael Hirmke
  1 sibling, 2 replies; 12+ messages in thread
From: Earl Chew @ 1998-07-15 20:50 UTC (permalink / raw)
  To: earnie_boyd; +Cc: gnu-win32

Earnie Boyd wrote:
> > This is probably true (I haven't tried it yet), but doesn't really
> > answer the question why foo.bat containing
> >
> > sh -s %1 < \a\b\c\foo.sh
> >
> > run from a Win32 command shell doesn't work on b19.
> >
> 
> It is most likely because sh which is a port of linuxes ash ends up
> trying to open abcfoo.sh instead of \\a\\b\\c\\foo.sh.

Sorry, I meant to write:

bash -s %1 < \a\b\c\foo.sh

I can understand reasons why ash doesn't work --- but I would
have thought that bash would be ok.

I've done some more experimenting. Here is a small shell script,
c:\foo.sh:

: bar=1
echo Hello

I type:

C:\>bash -s < \foo.sh
Hello
: command not found

C:\>C:\tmp>bash \foo.sh
Hello

It turns out that I get the same behaviour if I move this to e:\foo.sh
and on e: drive type:

E:\vob>bash -s < \foo.sh
Hello
: command not found

E:\vob>bash \foo.sh
\foo.sh: \foo.sh: No such file or directory

Note that bash is unable to find foo.sh using the drive relative Win32
path name.

Earl
-- 
>----------------------------------------------------------------------+
> Earl Chew                              mailto:earl_chew@hp.com       |
> Hewlett-Packard Australia              Tel:   +61 3 9210 5528        |
> Advanced Networks Division             Fax:   +61 3 9210 5550        |
> 347 Burwood Highway                    GPS:   37 51'46"S 145 10'03"E |
> Burwood East, Victoria 3151, Australia                               |
>----------------------------------------------------------------------+
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
@ 1998-07-15  9:48 Earnie Boyd
  1998-07-15 20:50 ` Earl Chew
  1998-07-20 14:18 ` Michael Hirmke
  0 siblings, 2 replies; 12+ messages in thread
From: Earnie Boyd @ 1998-07-15  9:48 UTC (permalink / raw)
  To: Earl Chew; +Cc: gnu-win32

---Earl Chew <earl@hpautodb.aus.hp.com> wrote:
>
> : Your stated problem on the directories can be solved like this:
> : 
> :   bash#> cd /
> :   bash#> ln -s //x/a a
> : 
> : now when you do `sh -s /a/b/c/foo.sh %1' it should be able to find
it
> : because //x/a is symbolicly linked to a.
> 
> This is probably true (I haven't tried it yet), but doesn't really
> answer the question why foo.bat containing
> 
> sh -s %1 < \a\b\c\foo.sh
> 
> run from a Win32 command shell doesn't work on b19.
> 

It is most likely because sh which is a port of linuxes ash ends up
trying to open abcfoo.sh instead of \\a\\b\\c\\foo.sh.
==
-        \\||//
---o0O0--Earnie--0O0o----
--earnie_boyd@yahoo.com--
------ooo0O--O0ooo-------



_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
  1998-07-14  8:29 Earnie Boyd
@ 1998-07-14 18:32 ` Earl Chew
  0 siblings, 0 replies; 12+ messages in thread
From: Earl Chew @ 1998-07-14 18:32 UTC (permalink / raw)
  To: earnie_boyd; +Cc: gnu-win32

: Your stated problem on the directories can be solved like this:
: 
:   bash#> cd /
:   bash#> ln -s //x/a a
: 
: now when you do `sh -s /a/b/c/foo.sh %1' it should be able to find it
: because //x/a is symbolicly linked to a.

This is probably true (I haven't tried it yet), but doesn't really
answer the question why foo.bat containing

sh -s %1 < \a\b\c\foo.sh

run from a Win32 command shell doesn't work on b19.

Earl
--
>----------------------------------------------------------------------+
> Earl Chew                              mailto:earl_chew@hp.com       |
> Hewlett-Packard Australia              Tel:   +61 3 9210 5528        |
> Advanced Networks Division             Fax:   +61 3 9210 5550        |
> 347 Burwood Highway                    GPS:   37 51'46"S 145 10'03"E |
> Burwood East, Victoria 3151, Australia                               |
>----------------------------------------------------------------------+
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
@ 1998-07-14  8:29 Earnie Boyd
  1998-07-14 18:32 ` Earl Chew
  0 siblings, 1 reply; 12+ messages in thread
From: Earnie Boyd @ 1998-07-14  8:29 UTC (permalink / raw)
  To: Earl Chew; +Cc: gw32

Your stated problem on the directories can be solved like this:

  bash#> cd /
  bash#> ln -s //x/a a

now when you do `sh -s /a/b/c/foo.sh %1' it should be able to find it
because //x/a is symbolicly linked to a.



---Earl Chew <earl@hpautodb.aus.hp.com> wrote:
>
> : > I have a batch file which I wrote for b18. It basically
> : > reads:
> : > 
> : > sh -s %1 < \a\b\c\foo.sh
> 
> I should have emphasised that this is a batch file that runs from
cmd.exe.
> So foo.bat contains:
> 
> sh -s %1 < \a\b\c\foo.sh
> 
> : > a. I must use bash instead of sh.
> : 
> : This is known, it has been suggested to:
> :   #> mv sh.exe ash.exe
> :   #> cp bash.exe sh.exe
> 
> Thanks for the hint.
> 
> : > b. Even after using bash, the contents of the script
> : >    are not read and executed correctly. Weird things
> : >    happen (eg : causes much confusion).
> : > 
> : 
> : Well, since we don't have the contents of the script nor the `Weird
> : things' that happen it's tuff for any of us to know what is going
on.
> 
> Ok. I'll try to put together a small sample tomorrow.
> 
> : > Using:
> : > 
> : > sh //e/a/b/c/foo.sh %1
> : > 
> : > appears to work... but unfortunately is not drive
> : > independent :-(
> : 
> : Have you tried `sh /a/b/c/foo.sh %1'?
> 
> Yes. That works (as expected) --- but the semantics are subtley
different.
> 
> I've got a script that I want to have execute irrespective of the
drive
> it happens to installed on. In this instance, I have a bunch of
files that are
> installed in directory x:\a\b\c. The drive relative path (in Win32
terms)
> is \a\b\c.
> 
> I can get to the file in Cygwin only by giving an absolute path
//x/a/b/c.
> Thus although sh /a/b/c/foo.sh "works" from a cmd.exe batch file ---
it
> cannot find the file in a drive relative way --- only \a\b\c\foo.sh
can
> do that.
> 
> Let me know if there's any confusion here.
> 
> So, the only way that I could think of to get hold of the shell
script in
> a drive relative way was to get a Win32 batch file to locate the
script:
> 
> foo.bat:
> 	sh -s %1 < \a\b\c\foo.sh
> 
> foo.sh:
> 	# Rest of script
> 
> This way, I can "execute" the shell script from a Win32 command
shell. Or
> I could until I tried b19 :-(
> 
> Earl
> --
>
>----------------------------------------------------------------------+
> > Earl Chew                              mailto:earl_chew@hp.com    
  |
> > Hewlett-Packard Australia              Tel:   +61 3 9210 5528     
  |
> > Advanced Networks Division             Fax:   +61 3 9210 5550     
  |
> > 347 Burwood Highway                    GPS:   37 51'46"S 145
10'03"E |
> > Burwood East, Victoria 3151, Australia                            
  |
>
>----------------------------------------------------------------------+
> 

_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
  1998-07-14  8:29 Earnie Boyd
@ 1998-07-14  8:29 ` Earl Chew
  0 siblings, 0 replies; 12+ messages in thread
From: Earl Chew @ 1998-07-14  8:29 UTC (permalink / raw)
  To: earnie_boyd; +Cc: gnu-win32, earl.chew

: > I have a batch file which I wrote for b18. It basically
: > reads:
: > 
: > sh -s %1 < \a\b\c\foo.sh

I should have emphasised that this is a batch file that runs from cmd.exe.
So foo.bat contains:

sh -s %1 < \a\b\c\foo.sh

: > a. I must use bash instead of sh.
: 
: This is known, it has been suggested to:
:   #> mv sh.exe ash.exe
:   #> cp bash.exe sh.exe

Thanks for the hint.

: > b. Even after using bash, the contents of the script
: >    are not read and executed correctly. Weird things
: >    happen (eg : causes much confusion).
: > 
: 
: Well, since we don't have the contents of the script nor the `Weird
: things' that happen it's tuff for any of us to know what is going on.

Ok. I'll try to put together a small sample tomorrow.

: > Using:
: > 
: > sh //e/a/b/c/foo.sh %1
: > 
: > appears to work... but unfortunately is not drive
: > independent :-(
: 
: Have you tried `sh /a/b/c/foo.sh %1'?

Yes. That works (as expected) --- but the semantics are subtley different.

I've got a script that I want to have execute irrespective of the drive
it happens to installed on. In this instance, I have a bunch of files that are
installed in directory x:\a\b\c. The drive relative path (in Win32 terms)
is \a\b\c.

I can get to the file in Cygwin only by giving an absolute path //x/a/b/c.
Thus although sh /a/b/c/foo.sh "works" from a cmd.exe batch file --- it
cannot find the file in a drive relative way --- only \a\b\c\foo.sh can
do that.

Let me know if there's any confusion here.

So, the only way that I could think of to get hold of the shell script in
a drive relative way was to get a Win32 batch file to locate the script:

foo.bat:
	sh -s %1 < \a\b\c\foo.sh

foo.sh:
	# Rest of script

This way, I can "execute" the shell script from a Win32 command shell. Or
I could until I tried b19 :-(

Earl
--
>----------------------------------------------------------------------+
> Earl Chew                              mailto:earl_chew@hp.com       |
> Hewlett-Packard Australia              Tel:   +61 3 9210 5528        |
> Advanced Networks Division             Fax:   +61 3 9210 5550        |
> 347 Burwood Highway                    GPS:   37 51'46"S 145 10'03"E |
> Burwood East, Victoria 3151, Australia                               |
>----------------------------------------------------------------------+
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: bash -s from .bat file
@ 1998-07-14  8:29 Earnie Boyd
  1998-07-14  8:29 ` Earl Chew
  0 siblings, 1 reply; 12+ messages in thread
From: Earnie Boyd @ 1998-07-14  8:29 UTC (permalink / raw)
  To: gnu-win32, earl.chew

---earl.chew@altavista.net wrote:
>
> I have a batch file which I wrote for b18. It basically
> reads:
> 
> sh -s %1 < \a\b\c\foo.sh
> 
> This worked as expected, but fails under b19.1. I notice
> 
> a. I must use bash instead of sh.

This is known, it has been suggested to:
  #> mv sh.exe ash.exe
  #> cp bash.exe sh.exe

> b. Even after using bash, the contents of the script
>    are not read and executed correctly. Weird things
>    happen (eg : causes much confusion).
> 

Well, since we don't have the contents of the script nor the `Weird
things' that happen it's tuff for any of us to know what is going on.

> Using:
> 
> sh //e/a/b/c/foo.sh %1
> 
> appears to work... but unfortunately is not drive
> independent :-(

Have you tried `sh /a/b/c/foo.sh %1'?

> 
> Can anyone explain what's going on?
> 

A confusion between the UNIX filesystem and the WIN32 filesystem and
the emulation of the UNIX filesystem on the WIN32 filesystem.  

With UNIX the user sees one big continuous filesystem and they aren't
concerned with devices/drives.  The UNIX administrator has to be
concerned only with what directories are to be mounted on what
devices/drives.

With WIN32 the user has to be concerned with a filesystem that has
many devices/drives and the user has to determine what directories are
loaded on what devices/drives.  The WIN32 administrator only has to be
concerned that there are devices/drives, he isn't concerned with what
is on the device.  So much for a _USER_FRIENDLY_ system.

With CYGWIN32, the project has tried the best it could to
emulate/merge the UNIX filesystem on/with the WIN32 filesystem. 
Unless you have a clear understanding of both filesystems and their
differences then this can lead to confusion.

-        \\||//
---o0O0--Earnie--0O0o----
--earnie_boyd@yahoo.com--
------ooo0O--O0ooo-------

To fix the most serious problems:
  Please, _READ_ the IMPORTANT UPGRADE NOTICE at the end of this note.
  Please, ensure that there is only _ONE_ cygwinb19.dll.
  Please, ensure that _ALL_ b18 binaries have been removed.

Please, research your question via the Searchable Mail Archives first.
http://www.cygnus.com/ml/gnu-win32          (Searchable Mail Archives)

Check out these great gnu-win32 related sites:
ftp://ftp.cygnus.com/pub/gnu-win32/latest/                  (ftp site)
http://www.cygnus.com/pubs/gnupro/                    (Comercial Page)
http://www.cygnus.com/misc/gnu-win32/                   (Project Page)
http://dvpraktikum.informatik.uni-koeln.de:3232/ 
                                            (Cygwin32 Porting Project)
http://www.lexa.ru/sos                               (Sergey Okhapkin)
ftp://www.lexa.ru/pub/domestic/sos/                (Sergey's ftp site)
http://www.fu.is.saga-u.ac.jp/~colin/gcc.html (Colin Peters - Mingw32)
http://www.xraylith.wisc.edu/~khan/software/gnu-win32/    (Mumit Khan)
ftp://ftp.hksys.com/pub/mirrors/EGCS-Win32/   (Jeremy Bettis - mirror)
http://gnu-win32.paranoia.ru                   (Chuck Bogorad's ports)
http://www.downloadwizard.com/ak/gnu-win32/bash.html
                                        (GNU-Win32 Bash Configuration)
http://www.parallax.co.uk/~andyp/index_text.html  (Andy Piper - ports)
http://www.tiac.net/users/cgf     (Christopher Faylor - package ports)
http://aquarius.franken.de/docs/develop/gnuwin32/GNUWin32.txt
                                               (Package Porting Notes)
ftp://ftp.franken.de/pub/win32/develop/gnuwin32/cygwin32/ 
                                                       (German mirror)
http://www.dol.ru/users/valtul      (Valery Tulnikov - software ports)
ftp://ftp.cs.nyu.edu/pub/local/fox/cygwin32 (David fox - RPM packages)
http://www.itribe.net/virtunix/winhelp-man-pages/     (HTML Man Pages)
http://www.kedemel.demon.co.uk/                       (Darren's ports)
http://www.multione.capgemini.fr/tools/pack_ipc/
                               ("Ludovic Lange" <llange@capgemini.fr>)

Help for Win32 Beginners: 
 http://www.relisoft.com
 http://www.program.com/resources/win32.html

DISCLAIMER: These links or links from these pages to other sites do
not constitute an endorsement of any entities, advertisers, products 
or services therein. I am not responsible for and do not control or 
monitor the content of these sites or the accuracy of information 
found therein.

-------------------- IMPORTANT UPGRADE NOTICE ------------------------
You should get the following to update your cygwinb19 package:

Sergey Okhapkin's coolview package which contains an updated 
cygwinb19.dll.  (Yes, even if you've already downloaded the b19.1 
update from the Cygnus Site).

Mumit Khan's compilation of EGCS for the cygwinb19.dll; especially if 
you're using the C++ compiler.  The current version of the compiler
that 
comes with the tools has lots of problems that have been fixed with 
the EGCS version.  This is a drop-in replacement for the GCC toolset.

URL's are listed above.
-----------------------------------------------------------------------

_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~1998-07-20 14:18 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-07-13  1:02 bash -s from .bat file earl.chew
1998-07-14  8:29 Earnie Boyd
1998-07-14 18:32 ` Earl Chew
1998-07-14  8:29 Earnie Boyd
1998-07-14  8:29 ` Earl Chew
1998-07-15  9:48 Earnie Boyd
1998-07-15 20:50 ` Earl Chew
1998-07-16 14:33   ` Mikey
1998-07-19 17:42     ` Earl Chew
1998-07-16 17:13   ` Larry Hall
1998-07-20 14:18 ` Michael Hirmke
1998-07-17 18:55 Sergey Okhapkin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).