Cygwin Recipes: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 37: Line 37:
</blockquote>
</blockquote>


=Cygwin Version
=Cygwin Version=


<pre>
<pre>
cygcheck -V
cygcheck -V
</pre>
</pre>

Revision as of 01:10, 14 January 2016

Internal

Detecting Cygwin from a Script

if [ "$OSTYPE" = "cygwin" ]; then
   ...
fi

Handling Path with Spaces in Cygwin

f [ "$OSTYPE" = "cygwin" ]; then
     java_executable=`cygpath "$java_executable"`
fi

"$java_executable" -version

cygwin Login Banner

... Is the content of /etc/motd.

Set up a sshd server

Set up a sshd server

Setup Terminals

Setup Terminals

Cygwin Version

cygcheck -V