Re: How to run a bash shell script from cygwin console

2008-07-17 Thread akarui
Now, I have new issue after adding a line ("cd") in the script. New script looks like as below: / #!/bin/bash cd "c:\Program Files\eviware\soapUI-Pro-2.0.3\bin"#This is mount-mapped as "/soapui" pwd ls / The output I get on the cygwin console is as follow: /***

Re: How to run a bash shell script from cygwin coosole

2008-07-17 Thread akarui
Christopher Faylor-8 wrote: > > d2u ./runRWS.sh > > cgf > Thanks. It is working upto here. -- View this message in context: http://www.nabble.com/How-to-run-a-bash-shell-script-from-cygwin-coosole-tp18515908p18517222.html Sent from the Cygwin list mailing list archive at Nabble.com. -- U

Re: How to run a bash shell script from cygwin coosole

2008-07-17 Thread akarui
Greg Chicares-2 wrote: > > On 2008-07-17 19:17Z, akarui wrote: >> >> ./runRWS.sh: line 3: $'ls\r': command not found > > d2u ./runRWS.sh > I am using Crimson editor and saved the file in UNIX format, but still seeing the error "$ls\r". How

How to run a bash shell script from cygwin coosole

2008-07-17 Thread akarui
I have a very simple bash script named runRWS.sh: / #!/bin/bash cd /soapui ls pwd / When I run from cygwin console, , I get: / [EMAIL PROTECTED] /usr/bin $ ./runRWS.sh : No such file or directoryoapui ./runRWS.sh: line 3: $'ls\r': command not found /usr/bin ***