Re: newbie question -- problem with launching shell script files

2007-10-03 Thread Alexey Illarionov
Thanks to everyone for your help. On 10/3/07, Steve Holden <[EMAIL PROTECTED]> wrote: > Alexey Illarionov wrote: > > Hello, > > > > I have just installed cygwin using setup.exe and know almost nothing > > about it. I made no changes in any configuration files and launch my > > cygwin session just

Re: newbie question -- problem with launching shell script files

2007-10-03 Thread Steve Holden
Alexey Illarionov wrote: Hello, I have just installed cygwin using setup.exe and know almost nothing about it. I made no changes in any configuration files and launch my cygwin session just by starting the unchanged 'cygwin.bat' file. I wrote a small script. Here is the content of the 'run.sh'

Re: newbie question -- problem with launching shell script files

2007-10-03 Thread Thorsten Kampe
* Alexey Illarionov (Tue, 2 Oct 2007 21:53:13 -0700) > I wrote a small script. Here is the content of the 'run.sh' > > #!/bin/sh > cd /cygdrive/c > > Unfortunately, it does not work. The command './run.sh' does nothing. Actually it does. You can see that by putting "pwd" at the bottom of your s

Re: newbie question -- problem with launching shell script files

2007-10-02 Thread Brian Dessent
Alexey Illarionov wrote: > I wrote a small script. Here is the content of the 'run.sh' > > #!/bin/sh > cd /cygdrive/c > > Unfortunately, it does not work. The command './run.sh' does nothing. Let's back up a moment. What do you expect the above script to actually do? Nothing is the proper and

newbie question -- problem with launching shell script files

2007-10-02 Thread Alexey Illarionov
Hello, I have just installed cygwin using setup.exe and know almost nothing about it. I made no changes in any configuration files and launch my cygwin session just by starting the unchanged 'cygwin.bat' file. I wrote a small script. Here is the content of the 'run.sh' #!/bin/sh cd /cygdrive/c