Cygwin Recipes: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 24: Line 24:


... Is the content of <tt>/etc/motd</tt>.
... Is the content of <tt>/etc/motd</tt>.
=Set up a sshd server=
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
:[[Cygwin Set Up a sshd Server|Set up a sshd server]]
</blockquote>

Revision as of 02:00, 13 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