From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Pete Mullins" To: help-gcc@gnu.org Subject: Re: how to clear screen ?? Date: Tue, 30 Nov 1999 13:31:00 -0000 Message-id: <38444023_1@news2.prserv.net> References: <820mu3$qv5v$1@reader3.wxs.nl> X-SW-Source: 1999-11/msg00461.html Martijn wrote in message news: 820mu3$qv5v$1@reader3.wxs.nl ... > Hello everyone, > > I'm a gcc newbe > As in the subject: What is the command (or perhaps: trick) to clear your > screen while running gcc in your terminal-mode? > The vt200 code is: esc [ 2 j (no spaces) you could write this to standard out. You may need to home the cursor as well: esc [ 1 ; 1 H From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Pete Mullins" To: help-gcc@gnu.org Subject: Re: how to clear screen ?? Date: Tue, 30 Nov 1999 23:28:00 -0000 Message-ID: <38444023_1@news2.prserv.net> References: <820mu3$qv5v$1@reader3.wxs.nl> X-SW-Source: 1999-11n/msg00461.html Message-ID: <19991130232800.w2O7RTpgG8RtmjXMMZS7Ta7Nm0Xy4zbEKj03eMcBc9s@z> Martijn wrote in message news: 820mu3$qv5v$1@reader3.wxs.nl ... > Hello everyone, > > I'm a gcc newbe > As in the subject: What is the command (or perhaps: trick) to clear your > screen while running gcc in your terminal-mode? > The vt200 code is: esc [ 2 j (no spaces) you could write this to standard out. You may need to home the cursor as well: esc [ 1 ; 1 H