Cygwin Recipes: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 36: Line 36:
:[[Cygwin Setup Terminals|Setup Terminals]]
:[[Cygwin Setup Terminals|Setup Terminals]]
</blockquote>
</blockquote>
=Cygwin Version
<pre>
cygcheck -V
</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