Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What this character sequence "\033[H\033[J" does in C? [duplicate]

Tags:

c

ansi-escape

I have gone through the below strange sequence of characters in some random website. When compiled and executed, this Sequence cleared all previous content in terminal. Does it clear buffer in output stream or does it clear only tty buffers?.

int main()
{
   printf("\033[H\033[J");
   return 0;
}
like image 940
Sadaananth Anbucheliyan Avatar asked Apr 14 '19 06:04

Sadaananth Anbucheliyan


2 Answers

These are ANSI escape codes.

\033 stands for ESC (ANSI value 27).

ESC [ is a kind of escape sequence called Control Sequence Introducer (CSI).

CSI commands starts with ESC[ followed by zero or more parameters.

\033[H (ie, ESC[H) and \033[J are CSI codes.

\033[H moves the cursor to the top left corner of the screen (ie, the first column of the first row in the screen).

and

\033[J clears the part of the screen from the cursor to the end of the screen.

When used in combination, it results in the screen getting cleared with cursor positioned at the beginning of the screen.

This is the functionality that you get when using Ctrl+L or clear command on bash.

These CSI can have parameters as well. If none are provided, it will use the default values.

like image 77
J...S Avatar answered Nov 13 '22 11:11

J...S


If I am not mistaken, it makes use of ANSI/VT100 Terminal Control Escape Sequences.

\033 - ASCII escape character

[H - move the cursor to the home position

[J - erases the screen from the current line down to the bottom of the screen

However, this command may not be compatible in every terminal/console.

like image 30
Whooper Avatar answered Nov 13 '22 12:11

Whooper