From mboxrd@z Thu Jan 1 00:00:00 1970 From: shamino1@usa.net (David C.) To: help-gcc@gnu.org Subject: Re: how to clear screen ?? Date: Fri, 31 Dec 1999 22:24:00 -0000 Message-ID: References: <820mu3$qv5v$1@reader3.wxs.nl> X-SW-Source: 1999-12n/msg00052.html Message-ID: <19991231222400._7T5Z3qv1Zarpd-pRtbWBjwQp5yKDpzvGSWoRYJ8qNQ@z> "Martijn" writes: > > 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? It's actually beyond the scope of a C compiler. This is in the realm of system calls. As was said by others, the curses library is the best way for a Unix app to manipulate a terminal window. Check out the man pages for ncurses for an overview. It should point you to other man pages for specific curses functions. man curs_clear for the curses method of clearning the screen. -- David