About 1,070,000 results
Open links in new tab
  1. terminal - List of ANSI color escape sequences - Stack Overflow

    Jan 30, 2011 · The ANSI escape sequences you're looking for are the Select Graphic Rendition subset. All of these have the form \033[XXXm where XXX is a series of semicolon-separated …

  2. What type of sequences are escape sequences starting with "\033]"

    Dec 14, 2018 · I found many escape sequences in Bash starting with \\033], but what are these sequences and why are they starting with \\033]?

  3. What does printf("\\033[H\\033[J") do in C? - Stack Overflow

    Apr 14, 2019 · 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 …

  4. c - What does printf ("\033c" ) mean? - Stack Overflow

    Nov 27, 2017 · The \033 is the ASCII escape character, which begins these sequences. Most are followed by another special character (this is a rare exception). XTerm Control Sequences lists …

  5. What does a bash sequence '\033 [999D' mean and where is it …

    The \033 is the escape character, and those sequence are not bash specific but interpreted by the terminal (software or hardware (via network or serial line)) in which the (bash) program runs. …

  6. Python: octal escape character \033 from a dictionary value …

    Jul 21, 2013 · If you observe carefully, your dictionary value for a color is something like \033 [1,30m for white color. However it should be \033 [1;30m. Note that you are using a ', (comma) …

  7. ANSI escape sequence "\033 [1m" printing bold for rest of …

    Feb 16, 2022 · I'm using the ANSI escape sequence for bold text; "\033[1m" in a print statement to create a bold header for my Python project. The problem is once I write a line like this: …

  8. In this \033 [01;32m VT100 style ANSI Escape Sequences what is …

    May 24, 2020 · \033[01;32m — The part of the ANSI escape code which \033[01;32m belongs to is called Select Graphic Rendition (SGI) Terminal Output Sequence (which has the code CSI n …

  9. ansi escape - Meanings of terminal codes \033 [E and \033 [07, …

    Jan 5, 2017 · In the C implementation for the Game of Life program, as shown here the codes I mentioned appear in the show() function. I can't find any information at all about what 033[E …

  10. How to change the output color of echo in Linux - Stack Overflow

    May 10, 2011 · I am trying to print a text in a red color in the terminal using echo command. How can I do that?