Yes, It's possible to clear the console. The finest way is to write the following escape sequence to stdout: write(1,"\E[H\E[2J",7); which is what */usr/bin/clear* does, without the overhead of creating another process.