From: vischne@ibm.net
Subject: clear.c program that clears cygwin screen and disconnects keyboard
27 Dec 1997 21:16:33 -0800
Message-ID: <199712280500.FAA02704.cygnus.gnu-win32@out2.ibm.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
To: gnu-win32@cygnus.com

As the caption promised, the following is a supposedly correct clear.exe
program that clears the bash$ window, but leaves the cygwin keyboard
not working.  Try it and see for yourself.

clear.c:
=========================================================================
#include <stdio.h>

int main (int argc, char **argv)
{
	/* ansi.sys (and Linux) clear screen command: */
	return printf("\e[2J");
}
=========================================================================


-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
