Skip to content

Instantly share code, notes, and snippets.

@riyadparvez
Created May 23, 2014 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save riyadparvez/8e032b3d3ed4b39b4442 to your computer and use it in GitHub Desktop.
Save riyadparvez/8e032b3d3ed4b39b4442 to your computer and use it in GitHub Desktop.
Clearing the terminal
//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