This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: drag and drop to cygwin scripts ?


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/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]