X-Recipient: archive-cygwin@delorie.com
X-SWARE-Spam-Status: No, hits=2.1 required=5.0 	tests=AWL,BAYES_00,J_CHICKENPOX_64,RCVD_IN_CHINA,RCVD_IN_DNSWL_LOW,RCVD_NUMERIC_HELO,SPF_HELO_PASS,SPF_PASS
X-Spam-Check-By: sourceware.org
To: cygwin@cygwin.com
From: Hongyi Zhao <hongyi.zhao@gmail.com>
Subject:  Re: Trick cmd.exe of Windows XP to run cygwin Batch Script.
Date:  Mon, 05 Jan 2009 19:26:20 +0800
Lines: 42
Message-ID:  <9up3m4hudhdfrourtmnmsiust0bs8jq0l5@4ax.com>
References:  <r531m49nvsu311asr3g18jk74m5l104lch@4ax.com> <20090104110730.GH4017@trikaliotis.net>
Mime-Version:  1.0
Content-Type:  text/plain; charset=us-ascii
Content-Transfer-Encoding:  7bit
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

On Sun, 4 Jan 2009 12:07:31 +0100, Spiro Trikaliotis
<an-cygwin@spiro.trikaliotis.net> wrote:
>d:\> bash -c ./myscript

I've tested the above code and work it out like this:

set cygwin_bin=C:\cygwin\bin
%cygwin_bin%\bash -l %~dp0myscript > myresult

In the above example by me,  we need to pay attention to the following
matters:

1- %~dp0myscript mean that the file myscript is located at the same
directory as the bat file, i.e, the batch file which include the above
patch codes I posted here.  This batch file will invoke the bash
script file myscript.

2- the -c parameter used by you shouldn't be used here, if I used it,
I will meet the errors like this:

... command not found

3- The --login or -l must be used here, otherewise the following error
will be occur like this:

myscript: line 1: awk : command not found

4- The path name conventions in the invoking of this batch file, the
dos rule, i.e., _\_,  should be used instead of the bash convention,
i.e., _/_, as the delimitor of path.

5- In your case,

>d:\> bash -c ./myscript

actully, in the usage, the file myscript must ba put into the bash's
directory, i.e., C:\cygwin\bin.  This is not a convenient solution.

Regards,

-- 
.: Hongyi Zhao [ hongyi.zhao AT gmail.com ] Free as in Freedom :.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

