This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: clear screen?


John Cooper wrote:
> 
> Is there a command to clear the screen when using bash?
> 
> `type clear' and `type cls' reveal nothing.

Here's three things you can try:

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 or spaces (ESC [ 2 J)

HTH,
-- 
  ,-/-  __      _  _         $Bill Luebkert
 (_/   /  )    // //       DBE Collectibles
  / ) /--<  o // //      http://www.wgn.net/~dbe/
-/-' /___/_<_</_</_    Email: dbe@wgn.net
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]