X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org To: cygwin AT cygwin DOT com From: Lewis Hyatt Subject: Re: drag and drop to cygwin scripts ? Date: Fri, 14 Sep 2007 10:57:29 -0400 Lines: 30 Message-ID: References: <884389 DOT 22573 DOT qm AT web55503 DOT mail DOT re4 DOT yahoo DOT 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 AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT 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/