Mail Archives: cygwin/1998/06/30/04:12:32
Emmanuël Telle wrote:
>
> Hi,
>
> How to clear the screen with bash ?
Ret one of these:
1) alias cls='echo -n ^[[2J' # the ^[ is an esc (in vi I use ^V followed by
# ^[ where ^ is holding down the cntrl key)
2) compile this into clear.exe or cls.exe:
#include <stdio.h>
int
main () {
printf ("\033[2J");
}
3) alias cls='cat ~/.cls'
where .cls contains just these 4 chars with no \n (ESC [ 2 J)
--
,-/- __ _ _ $Bill Luebkert ICQ=14439852
(_/ / ) // // DBE Collectibles
/ ) /--< o // // http://www.wgn.net/~dbe/
-/-' /___/_<_</_</_ Mailto:dbe AT wgn DOT net
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -