Cygwin Recipes: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 29: Line 29:
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
:[[Cygwin Set Up a sshd Server|Set up a sshd server]]
:[[Cygwin Set Up a sshd Server|Set up a sshd server]]
</blockquote>
=Setup Terminals=
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
:[[Cygwin Setup Terminals|Setup Terminals]]
</blockquote>
</blockquote>

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

Setup Terminals

Setup Terminals