cygwin interop questions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T01:12:42Z http://stackoverflow.com/feeds/question/518268 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/518268/cygwin-interop-questions 1 cygwin interop questions dreftymac 2009-02-05T22:29:08Z 2009-02-06T16:02:49Z <p>A quick couple of Cygwin questions that I am not quite sure how to search in order to find the answer myself:</p> <p><em>Question:</em> When I run</p> <pre><code>which perl </code></pre> <p>on my cygwin installation, it doesn't point to my pre-installed windows installation, it points to the cygwin one. How can i change it so it points to my <em>windows</em> based perl installation:</p> <pre><code>/cygdrive/c/perl/bin/perl </code></pre> <p><em>Question:</em> When I look at the desktop shortcut that invokes cygwin, it points to bash:</p> <pre><code>c:\cygwin\bin\bash --login -i </code></pre> <p>I cannot find the documentation for the allowed commandline flags. Specifically, I would like to find a flag that allows me to pass in a pre-defined user command, so that when cygwin starts up, that command is automatically invoked without me having to type it in.</p> <p>This is something that I would want to customize regularly, so it is not efficient to put it in .bash_profile or something like that. If possible, I'd like to be able to specify it from the command-line.</p> http://stackoverflow.com/questions/518268/cygwin-interop-questions/518294#518294 2 Answer by ConcernedOfTunbridgeWells for cygwin interop questions ConcernedOfTunbridgeWells 2009-02-05T22:35:12Z 2009-02-06T16:02:49Z <p>The answer to your first point is to make sure that the native win32 perl appears before the cygwin one in your path.</p> <p>The answer to the second part is <code>-c</code> which will execute a command supplied on the command line. The command flags are the same as standard bash, so <code>man bash</code> or any bash documentation will get you a list of them.</p> <p>Just as an aside, if you're mixing and matching native win32 applications with cygwin, take a look at <a href="http://unxutils.sourceforge.net/" rel="nofollow">UnxUtils.</a> It is based on <a href="http://msdn.microsoft.com/en-us/library/abx4dbyh(VS.80).aspx" rel="nofollow"><code>msvcrt.dll</code></a> rather than <code>cygwin.dll</code> so the programs will play nicely with standard windows paths (e.g. <code>C:\foo\bar</code> instead of needing a /cygdrive path like <code>/cygdrive/c/foo/bar</code>).</p> <p>It's much less comprehensive than Cygwin, but is mature and stable and has a good cross-section of the basic unix commands (sed etc.) It will play nicely with windows command files (you can do piping and redirection) and there is a port of <a href="http://www.zsh.org/" rel="nofollow">zsh</a> with it so it will also run shell scripts, although zsh is not totally compatible with bash.</p>