Search Results

6
votes

How to terminate script’s process tree in Cygwin bash from bash script

/bin/kill (the program, not the bash builtin) interprets a negative PID as “kill the process group” which will get all the children too. Changing kill %1 …
1
vote

Cygwin: Assembly language development?

You can totally run assembly programs in Cygwin. I’m guessing that your load failed because there’s a bunch of stuff that has to happen between when Windows executes a process and when you get to t …
1
vote

How to get Eclipse to give Cygwin’s GDB a posix path to the executable?

Cygwin comes with a program called cygpath to translate paths from windows to unix and vice-versa, e.g. $ cygpath -u 'c:\Users\Andrew\Documents\svn' /cygdrive/ …
2
votes

xemacs: dotemacs config so that one can paste without getting “funny” chars

This isn’t a clipboard or cygwin problem. If you save a UTF-8 text file with curly quotes in notepad and open it in XEmacs 21.4, you’ll get junk. According to the …
1
vote

How to start IE with a URL in a CYGWIN session.

Just: cygstart "http://www.google.com" where google.com is your desired URL. cygstart launches the default windows program for a path. So this …