RE: Help running bash scripts

2006-11-21 Thread David Christensen
Thierry wrote: > running a simple sh script(test.sh): > #!/bin/sh > # test > $ ./test.sh > : command not found Get this book: http://www.oreilly.com/catalog/bash3/index.html "test" is a Bash built-in command ("man bash"; see CONDITIONAL EXPRESSIONS). Avoid using that keyword in Bash scrip

Re: Error in 'cat /proc/uptime' output

2006-11-21 Thread Larry Hall (Cygwin)
On 11/21/2006, Rajesh Tiwari wrote: Thanks Dave, but I was looking for any patches for this issue. regards, Rajesh In that case, you may want to review the cygwin-patches list, cvs logs, changelogs, or even the release announcements. All of these should provide some insight, though the release

RE: Error in 'cat /proc/uptime' output

2006-11-21 Thread Rajesh Tiwari
Thanks Dave, but I was looking for any patches for this issue. regards, Rajesh -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Dave Korn Sent: Tuesday, November 21, 2006 3:09 PM To: cygwin@cygwin.com Subject: RE: Error in 'cat /proc/uptime' output On 21 No

Re: Help running bash scripts

2006-11-21 Thread Andrew DeFaria
Thierry wrote: I have installed cygwin on Windows XP along with the bash shell options but I'mhaving a problem running a simple sh script(test.sh): #!/bin/sh # test If I run the above script under cygwin, I get the following error message: $ ./test.sh : command not found Can anyone help m