Created
May 23, 2014 02:12
-
-
Save riyadparvez/8e032b3d3ed4b39b4442 to your computer and use it in GitHub Desktop.
Clearing the terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//clear the whole terminal screen | |
printf("\033[2J\033[1;1H"); | |
//only clear the portion for current portion of its | |
fputs("\033[A\033[2K\033[A\033[2K",stdout); | |
rewind(stdout); | |
ftruncate(1,0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment