I have installed cygwin on window to start crawling. It work well. Now i want to run cygwin and run a crawl program at starting of cygwin using java program code.

If you provide some code for it ,it will be great help for me.

link|improve this question

Dup of stackoverflow.com/questions/1307202/… – skaffman Aug 21 '09 at 7:19
feedback

3 Answers

up vote 1 down vote accepted

Please look at this link - http://cygwin.com/ml/cygwin/2003-01/msg01625.html

link|improve this answer
feedback

I looked at adatapost's link. It seems like a world of trouble awaits you down this path.

I mean, I like Cygwin a lot, but I wouldn't use it like this.

A few centimetres to the right of the 'Your Answer' box I'm typing in is a link to a Related question 'How can I run cygwin from Java?'

Who's putting the cart before the horse? I don't know.

Does Cygwin have to be involved at all ?

link|improve this answer
feedback

If you are trying to run a binary that requires the cygwin1.dll (which includes most commands you can execute from the cygwin bash shell) then you can run it by specifying the cygwin\bin directory in the path environment variable like this:

Process p = Runtime.getRuntime().exec("C:/path/to/cygwin/binary.exe", new String[] { "PATH=C:\\cygwin\\bin" });

This assumes you installed cygwin in C:\cygwin

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.