X-Recipient: archive-cygwin@delorie.com
X-Spam-Check-By: sourceware.org
To: cygwin@cygwin.com
From: Lewis Hyatt <lhyatt@princeton.edu>
Subject:  Re: drag and drop to cygwin scripts ?
Date:  Fri, 14 Sep 2007 10:57:29 -0400
Lines: 30
Message-ID: <fce7gf$14m$1@sea.gmane.org>
References:  <884389.22573.qm@web55503.mail.re4.yahoo.com>
Mime-Version:  1.0
Content-Type:  text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding:  7bit
User-Agent: Thunderbird 2.0.0.6 (Windows/20070728)
In-Reply-To: <884389.22573.qm@web55503.mail.re4.yahoo.com>
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@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

Keith Chiem wrote:
> Is it possible to write a script in cygwin, say bash or perl, create a shortcut to it in windows, and drag and drop a path or a url to it and have the script run and take it as an argument somehow ?
> 
> --k
> 
> 
> 

If you drag and drop files onto a batch script, Windows will run the 
batch script with the files as arguments. So you just need to write a 
batch script which will load bash and tell it to run your script with 
those arguments. As an example, you can edit your cygwin.bat, and change 
this line:

bash --login -i

to this:

bash -i -e /script/you/want/to/run.bash %*

And that will do what you want. Keep in mind that the file names will be 
in the Windows path format, so you will probably want to use a wrapper 
script that applies cygpath to them before passing them on to something 
else.

If you want the script to run inside an xterm or whatever, you can do 
that too.

-Lewis



--
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/

