#, fuzzy msgid "" msgstr "" "Project-Id-Version: man-pages-l10n VERSION\n" "POT-Creation-Date: 2014-07-17 17:56+0900\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. type: TH #: man-pages/man4/console_codes.4:23 #, no-wrap msgid "CONSOLE_CODES" msgstr "" #. type: TH #: man-pages/man4/console_codes.4:23 #, no-wrap msgid "2012-08-05" msgstr "" #. type: TH #: man-pages/man4/console_codes.4:23 #, no-wrap msgid "Linux" msgstr "" #. type: TH #: man-pages/man4/console_codes.4:23 #, no-wrap msgid "Linux Programmer's Manual" msgstr "" #. type: SH #: man-pages/man4/console_codes.4:24 #, no-wrap msgid "NAME" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:26 msgid "console_codes - Linux console escape and control sequences" msgstr "" #. type: SH #: man-pages/man4/console_codes.4:26 #, no-wrap msgid "DESCRIPTION" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:33 msgid "" "The Linux console implements a large subset of the VT102 and ECMA-48/ISO " "6429/ANSI X3.64 terminal controls, plus certain private-mode sequences for " "changing the color palette, character-set mapping, and so on. In the " "tabular descriptions below, the second column gives ECMA-48 or DEC mnemonics " "(the latter if prefixed with DEC) for the given function. Sequences without " "a mnemonic are neither ECMA-48 nor VT102." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:38 msgid "" "After all the normal output processing has been done, and a stream of " "characters arrives at the console driver for actual printing, the first " "thing that happens is a translation from the code used for processing to the " "code used for printing." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:44 msgid "" "If the console is in UTF-8 mode, then the incoming bytes are first assembled " "into 16-bit Unicode codes. Otherwise, each byte is transformed according to " "the current mapping table (which translates it to a Unicode value). See the " "B section below for discussion." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:50 msgid "" "In the normal case, the Unicode value is converted to a font index, and this " "is stored in video memory, so that the corresponding glyph (as found in " "video ROM) appears on the screen. Note that the use of Unicode (and the " "design of the PC hardware) allows us to use 512 different glyphs " "simultaneously." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:57 msgid "" "If the current Unicode value is a control character, or we are currently " "processing an escape sequence, the value will treated specially. Instead of " "being turned into a font index and rendered as a glyph, it may trigger " "cursor movement or other control functions. See the B section below for discussion." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:69 msgid "" "It is generally not good practice to hard-wire terminal controls into " "programs. Linux supports a B(5) database of terminal " "capabilities. Rather than emitting console escape sequences by hand, you " "will almost always want to use a terminfo-aware screen library or utility " "such as B(3), B(1), or B(1)." msgstr "" #. type: SS #: man-pages/man4/console_codes.4:69 #, no-wrap msgid "Linux console controls" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:73 msgid "" "This section describes all the control characters and escape sequences that " "invoke special functions (i.e., anything other than writing a glyph at the " "current cursor location) on the Linux console." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:75 msgid "B" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:86 msgid "" "A character is a control character if (before transformation according to " "the mapping table) it has one of the 14 codes 00 (NUL), 07 (BEL), 08 (BS), " "09 (HT), 0a (LF), 0b (VT), 0c (FF), 0d (CR), 0e (SO), 0f (SI), 18 (CAN), 1a " "(SUB), 1b (ESC), 7f (DEL). One can set a \"display control characters\" " "mode (see below), and allow 07, 09, 0b, 18, 1a, 7f to be displayed as glyphs." " On the other hand, in UTF-8 mode all codes 00-1f are regarded as control " "characters, regardless of any \"display control characters\" mode." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:95 msgid "" "If we have a control character, it is acted upon immediately and then " "discarded (even in the middle of an escape sequence) and the escape " "sequence continues with the next character. (However, ESC starts a new " "escape sequence, possibly aborting a previous unfinished one, and CAN and " "SUB abort any escape sequence.) The recognized control characters are BEL, " "BS, HT, LF, VT, FF, CR, SO, SI, CAN, SUB, ESC, DEL, CSI. They do what one " "would expect:" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:97 msgid "BEL (0x07, B<^G>) beeps;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:100 msgid "" "BS (0x08, B<^H>) backspaces one column (but not past the beginning of the " "line);" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:103 msgid "" "HT (0x09, B<^I>) goes to the next tab stop or to the end of the line if " "there is no earlier tab stop;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:107 msgid "" "LF (0x0A, B<^J>), VT (0x0B, B<^K>) and FF (0x0C, B<^L>) all give a linefeed, " "and if LF/NL (new-line mode) is set also a carriage return;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:109 msgid "CR (0x0D, B<^M>) gives a carriage return;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:111 msgid "SO (0x0E, B<^N>) activates the G1 character set;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:113 msgid "SI (0x0F, B<^O>) activates the G0 character set;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:115 msgid "CAN (0x18, B<^X>) and SUB (0x1A, B<^Z>) interrupt escape sequences;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:117 msgid "ESC (0x1B, B<^[>) starts an escape sequence;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:119 msgid "DEL (0x7F) is ignored;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:121 msgid "CSI (0x9B) is equivalent to ESC [." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:123 msgid "B" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:125 #, no-wrap msgid "ESC c RIS Reset.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:126 #, no-wrap msgid "ESC D IND Linefeed.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:127 #, no-wrap msgid "ESC E NEL Newline.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:128 #, no-wrap msgid "ESC H HTS Set tab stop at current column.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:129 #, no-wrap msgid "ESC M RI Reverse linefeed.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:130 #, no-wrap msgid "ESC Z DECID T{\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:131 #, no-wrap msgid "DEC private identification. The kernel\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:132 #, no-wrap msgid "returns the string ESC [ ? 6 c, claiming\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:133 #, no-wrap msgid "that it is a VT102.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:134 man-pages/man4/console_codes.4:138 man-pages/man4/console_codes.4:163 man-pages/man4/console_codes.4:243 man-pages/man4/console_codes.4:249 man-pages/man4/console_codes.4:253 man-pages/man4/console_codes.4:260 #, no-wrap msgid "T}\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:135 #, no-wrap msgid "ESC 7 DECSC T{\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:136 #, no-wrap msgid "Save current state (cursor coordinates,\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:137 #, no-wrap msgid "attributes, character sets pointed at by G0, G1).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:139 #, no-wrap msgid "ESC 8 DECRC Restore state most recently saved by ESC 7.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:140 #, no-wrap msgid "ESC [ CSI Control sequence introducer\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:141 #, no-wrap msgid "ESC % Start sequence selecting character set\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:142 #, no-wrap msgid "ESC % @ \\0\\0\\0Select default (ISO 646 / ISO 8859-1)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:143 #, no-wrap msgid "ESC % G \\0\\0\\0Select UTF-8\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:144 #, no-wrap msgid "ESC % 8 \\0\\0\\0Select UTF-8 (obsolete)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:145 #, no-wrap msgid "ESC # 8 DECALN DEC screen alignment test - fill screen with E's.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:146 #, no-wrap msgid "ESC ( Start sequence defining G0 character set\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:147 #, no-wrap msgid "ESC ( B \\0\\0\\0Select default (ISO 8859-1 mapping)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:148 #, no-wrap msgid "ESC ( 0 \\0\\0\\0Select VT100 graphics mapping\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:149 #, no-wrap msgid "ESC ( U \\0\\0\\0Select null mapping - straight to character ROM\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:150 #, no-wrap msgid "ESC ( K \\0\\0\\0Select user mapping - the map that is loaded by\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:151 #, no-wrap msgid " \\0\\0\\0the utility B(8).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:152 #, no-wrap msgid "ESC ) Start sequence defining G1\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:153 #, no-wrap msgid " (followed by one of B, 0, U, K, as above).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:154 #, no-wrap msgid "ESC E DECPNM Set numeric keypad mode\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:155 #, no-wrap msgid "ESC = DECPAM Set application keypad mode\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:156 #, no-wrap msgid "ESC ] OSC T{\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:157 #, no-wrap msgid "(Should be: Operating system command)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:158 #, no-wrap msgid "ESC ] P I: set palette, with parameter\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:159 #, no-wrap msgid "given in 7 hexadecimal digits after the final P :-(.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:160 #, no-wrap msgid "Here I is the color (0-15), and I indicates\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:161 #, no-wrap msgid "the red/green/blue values (0-255).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:162 #, no-wrap msgid "ESC ] R: reset palette\n" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:167 msgid "B" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:173 msgid "" "CSI (or ESC [) is followed by a sequence of parameters, at most NPAR (16), " "that are decimal numbers separated by semicolons. An empty or absent " "parameter is taken to be 0. The sequence of parameters may be preceded by a " "single question mark." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:177 msgid "" "However, after CSI [ (or ESC [ [) a single character is read and this entire " "sequence is ignored. (The idea is to ignore an echoed function key.)" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:179 msgid "The action of a CSI sequence is determined by its final character." msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:181 #, no-wrap msgid "@ ICH Insert the indicated # of blank characters.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:182 #, no-wrap msgid "A CUU Move cursor up the indicated # of rows.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:183 #, no-wrap msgid "B CUD Move cursor down the indicated # of rows.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:184 #, no-wrap msgid "C CUF Move cursor right the indicated # of columns.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:185 #, no-wrap msgid "D CUB Move cursor left the indicated # of columns.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:186 #, no-wrap msgid "E CNL Move cursor down the indicated # of rows, to column 1.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:187 #, no-wrap msgid "F CPL Move cursor up the indicated # of rows, to column 1.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:188 #, no-wrap msgid "G CHA Move cursor to indicated column in current row.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:189 #, no-wrap msgid "H CUP Move cursor to the indicated row, column (origin at 1,1).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:190 #, no-wrap msgid "J ED Erase display (default: from cursor to end of display).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:191 #, no-wrap msgid " ESC [ 1 J: erase from start to cursor.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:192 #, no-wrap msgid " ESC [ 2 J: erase whole display.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:193 #, no-wrap msgid " ESC [ 3 J: erase whole display including scroll-back\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:194 #, no-wrap msgid " buffer (since Linux 3.0).\n" msgstr "" #. ESC [ 3 J: commit f8df13e0a901fe55631fed66562369b4dba40f8b #. type: tbl table #: man-pages/man4/console_codes.4:196 #, no-wrap msgid "K EL Erase line (default: from cursor to end of line).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:197 #, no-wrap msgid " ESC [ 1 K: erase from start of line to cursor.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:198 #, no-wrap msgid " ESC [ 2 K: erase whole line.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:199 #, no-wrap msgid "L IL Insert the indicated # of blank lines.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:200 #, no-wrap msgid "M DL Delete the indicated # of lines.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:201 #, no-wrap msgid "P DCH Delete the indicated # of characters on current line.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:202 #, no-wrap msgid "X ECH Erase the indicated # of characters on current line.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:203 #, no-wrap msgid "a HPR Move cursor right the indicated # of columns.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:204 #, no-wrap msgid "c DA Answer ESC [ ? 6 c: \"I am a VT102\".\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:205 #, no-wrap msgid "d VPA Move cursor to the indicated row, current column.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:206 #, no-wrap msgid "e VPR Move cursor down the indicated # of rows.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:207 #, no-wrap msgid "f HVP Move cursor to the indicated row, column.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:208 #, no-wrap msgid "g TBC Without parameter: clear tab stop at current position.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:209 #, no-wrap msgid " ESC [ 3 g: delete all tab stops.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:210 #, no-wrap msgid "h SM Set Mode (see below).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:211 #, no-wrap msgid "l RM Reset Mode (see below).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:212 #, no-wrap msgid "m SGR Set attributes (see below).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:213 #, no-wrap msgid "n DSR Status report (see below).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:214 #, no-wrap msgid "q DECLL Set keyboard LEDs.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:215 #, no-wrap msgid " ESC [ 0 q: clear all LEDs\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:216 #, no-wrap msgid " ESC [ 1 q: set Scroll Lock LED\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:217 #, no-wrap msgid " ESC [ 2 q: set Num Lock LED\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:218 #, no-wrap msgid " ESC [ 3 q: set Caps Lock LED\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:219 #, no-wrap msgid "r DECSTBM Set scrolling region; parameters are top and bottom row.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:220 #, no-wrap msgid "s ? Save cursor location.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:221 #, no-wrap msgid "u ? Restore cursor location.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:222 #, no-wrap msgid "\\` HPA Move cursor to indicated column in current row.\n" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:226 msgid "B" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:233 msgid "" "The ECMA-48 SGR sequence ESC [ I m sets display attributes. " "Several attributes can be set in the same sequence, separated by semicolons. " " An empty parameter (between semicolons or string initiator or terminator) " "is interpreted as a zero." msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:235 #, no-wrap msgid "param result\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:236 #, no-wrap msgid "0 reset all attributes to their defaults\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:237 #, no-wrap msgid "1 set bold\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:238 #, no-wrap msgid "2 set half-bright (simulated with color on a color display)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:239 #, no-wrap msgid "4 T{\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:240 #, no-wrap msgid "set underscore (simulated with color on a color display)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:241 #, no-wrap msgid "(the colors used to simulate dim or underline are set\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:242 #, no-wrap msgid "using ESC ] ...)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:244 #, no-wrap msgid "5 set blink\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:245 #, no-wrap msgid "7 set reverse video\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:246 #, no-wrap msgid "10 T{\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:247 #, no-wrap msgid "reset selected mapping, display control flag,\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:248 #, no-wrap msgid "and toggle meta flag (ECMA-48 says \"primary font\").\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:250 #, no-wrap msgid "11 T{\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:251 man-pages/man4/console_codes.4:255 #, no-wrap msgid "select null mapping, set display control flag,\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:252 #, no-wrap msgid "reset toggle meta flag (ECMA-48 says \"first alternate font\").\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:254 #, no-wrap msgid "12 T{\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:256 #, no-wrap msgid "set toggle meta flag (ECMA-48 says \"second alternate font\").\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:257 #, no-wrap msgid "The toggle meta flag\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:258 #, no-wrap msgid "causes the high bit of a byte to be toggled\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:259 #, no-wrap msgid "before the mapping table translation is done.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:261 #, no-wrap msgid "21 set normal intensity (ECMA-48 says \"doubly underlined\")\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:262 #, no-wrap msgid "22 set normal intensity\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:263 #, no-wrap msgid "24 underline off\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:264 #, no-wrap msgid "25 blink off\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:265 #, no-wrap msgid "27 reverse video off\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:266 #, no-wrap msgid "30 set black foreground\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:267 #, no-wrap msgid "31 set red foreground\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:268 #, no-wrap msgid "32 set green foreground\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:269 #, no-wrap msgid "33 set brown foreground\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:270 #, no-wrap msgid "34 set blue foreground\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:271 #, no-wrap msgid "35 set magenta foreground\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:272 #, no-wrap msgid "36 set cyan foreground\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:273 #, no-wrap msgid "37 set white foreground\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:274 #, no-wrap msgid "38 set underscore on, set default foreground color\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:275 #, no-wrap msgid "39 set underscore off, set default foreground color\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:276 #, no-wrap msgid "40 set black background\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:277 #, no-wrap msgid "41 set red background\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:278 #, no-wrap msgid "42 set green background\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:279 #, no-wrap msgid "43 set brown background\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:280 #, no-wrap msgid "44 set blue background\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:281 #, no-wrap msgid "45 set magenta background\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:282 #, no-wrap msgid "46 set cyan background\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:283 #, no-wrap msgid "47 set white background\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:284 #, no-wrap msgid "49 set default background color\n" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:288 msgid "B" msgstr "" #. type: TP #: man-pages/man4/console_codes.4:288 #, no-wrap msgid "ESC [ 3 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:291 msgid "DECCRM (default off): Display control chars." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:291 #, no-wrap msgid "ESC [ 4 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:294 msgid "DECIM (default off): Set insert mode." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:294 #, no-wrap msgid "ESC [ 20 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:298 msgid "" "LF/NL (default off): Automatically follow echo of LF, VT or FF with CR." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:301 msgid "B" msgstr "" #. type: TP #: man-pages/man4/console_codes.4:301 #, no-wrap msgid "ESC [ 5 n" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:304 msgid "Device status report (DSR): Answer is ESC [ 0 n (Terminal OK)." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:304 #, no-wrap msgid "ESC [ 6 n" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:309 msgid "" "Cursor position report (CPR): Answer is ESC [ I ; I R, where I is " "the cursor location." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:311 msgid "B" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:317 msgid "" "These are not described in ECMA-48. We list the Set Mode sequences; the " "Reset Mode sequences are obtained by replacing the final \\(aqh\\(aq by " "\\(aql\\(aq." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:317 #, no-wrap msgid "ESC [ ? 1 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:321 msgid "" "DECCKM (default off): When set, the cursor keys send an ESC O prefix, rather " "than ESC [." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:321 #, no-wrap msgid "ESC [ ? 3 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:328 msgid "" "DECCOLM (default off = 80 columns): 80/132 col mode switch. The driver " "sources note that this alone does not suffice; some user-mode utility such " "as B(8) has to change the hardware registers on the console " "video card." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:328 #, no-wrap msgid "ESC [ ? 5 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:331 msgid "DECSCNM (default off): Set reverse-video mode." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:331 #, no-wrap msgid "ESC [ ? 6 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:335 msgid "" "DECOM (default off): When set, cursor addressing is relative to the upper " "left corner of the scrolling region." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:335 #, no-wrap msgid "ESC [ ? 7 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:341 msgid "" "DECAWM (default on): Set autowrap on. In this mode, a graphic character " "emitted after column 80 (or column 132 of DECCOLM is on) forces a wrap to " "the beginning of the following line first." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:341 #, no-wrap msgid "ESC [ ? 8 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:344 msgid "DECARM (default on): Set keyboard autorepeat on." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:344 #, no-wrap msgid "ESC [ ? 9 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:348 msgid "" "X10 Mouse Reporting (default off): Set reporting mode to 1 (or reset to " "0)\\(emsee below." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:348 #, no-wrap msgid "ESC [ ? 25 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:351 msgid "DECTECM (default on): Make cursor visible." msgstr "" #. type: TP #: man-pages/man4/console_codes.4:351 #, no-wrap msgid "ESC [ ? 1000 h" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:356 msgid "" "X11 Mouse Reporting (default off): Set reporting mode to 2 (or reset to " "0)\\(emsee below." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:358 msgid "B" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:365 msgid "" "The following sequences are neither ECMA-48 nor native VT102. They are " "native to the Linux console driver. Colors are in SGR parameters: 0 = " "black, 1 = red, 2 = green, 3 = brown, 4 = blue, 5 = magenta, 6 = cyan, 7 = " "white." msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:367 #, no-wrap msgid "ESC [ 1 ; I ] Set color I as the underline color\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:368 #, no-wrap msgid "ESC [ 2 ; I ] Set color I as the dim color\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:369 #, no-wrap msgid "ESC [ 8 ] Make the current color pair the default attributes.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:370 #, no-wrap msgid "ESC [ 9 ; I ] Set screen blank timeout to I minutes.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:371 #, no-wrap msgid "ESC [ 10 ; I ] Set bell frequency in Hz.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:372 #, no-wrap msgid "ESC [ 11 ; I ] Set bell duration in msec.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:373 #, no-wrap msgid "ESC [ 12 ; I ] Bring specified console to the front.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:374 #, no-wrap msgid "ESC [ 13 ] Unblank the screen.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:375 #, no-wrap msgid "ESC [ 14 ; I ] Set the VESA powerdown interval in minutes.\n" msgstr "" #. type: SS #: man-pages/man4/console_codes.4:377 #, no-wrap msgid "Character sets" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:382 msgid "" "The kernel knows about 4 translations of bytes into console-screen symbols. " "The four tables are: a) Latin1 -E PC, b) VT100 graphics -E PC, c) PC " "-E PC, d) user-defined." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:388 msgid "" "There are two character sets, called G0 and G1, and one of them is the " "current character set. (Initially G0.) Typing B<^N> causes G1 to become " "current, B<^O> causes G0 to become current." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:396 msgid "" "These variables G0 and G1 point at a translation table, and can be changed " "by the user. Initially they point at tables a) and b), respectively. The " "sequences ESC ( B and ESC ( 0 and ESC ( U and ESC ( K cause G0 to point at " "translation table a), b), c) and d), respectively. The sequences ESC ) B " "and ESC ) 0 and ESC ) U and ESC ) K cause G1 to point at translation table " "a), b), c) and d), respectively." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:406 msgid "" "The sequence ESC c causes a terminal reset, which is what you want if the " "screen is all garbled. The oft-advised \"echo ^V^O\" will make only G0 " "current, but there is no guarantee that G0 points at table a). In some " "distributions there is a program B(1) that just does \"echo ^[c\". " "If your terminfo entry for the console is correct (and has an entry rs1=" "\\eEc), then \"tput reset\" will also work." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:414 msgid "" "The user-defined mapping table can be set using B(8). The result " "of the mapping is that if a symbol c is printed, the symbol s = map[c] is " "sent to the video memory. The bitmap that corresponds to s is found in the " "character ROM, and can be changed using B(8)." msgstr "" #. type: SS #: man-pages/man4/console_codes.4:414 #, no-wrap msgid "Mouse tracking" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:426 msgid "" "The mouse tracking facility is intended to return B(1)-compatible " "mouse status reports. Because the console driver has no way to know the " "device or type of the mouse, these reports are returned in the console input " "stream only when the virtual terminal driver receives a mouse update ioctl. " "These ioctls must be generated by a mouse-aware user-mode application such " "as the B(8) daemon." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:432 msgid "" "The mouse tracking escape sequences generated by B(1) encode numeric " "parameters in a single character as I+040. For example, \\(aq!\\(aq " "is 1. The screen coordinate system is 1-based." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:442 msgid "" "The X10 compatibility mode sends an escape sequence on button press encoding " "the location and the mouse button pressed. It is enabled by sending ESC [ ? " "9 h and disabled with ESC [ ? 9 l. On button press, B(1) sends ESC [ " "M I (6 characters). Here I is button-1, and I and I are the x " "and y coordinates of the mouse when the button was pressed. This is the " "same code the kernel also produces." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:457 msgid "" "Normal tracking mode (not implemented in Linux 2.0.24) sends an escape " "sequence on both button press and release. Modifier information is also " "sent. It is enabled by sending ESC [ ? 1000 h and disabled with ESC [ ? " "1000 l. On button press or release, B(1) sends ESC [ M I. The " "low two bits of I encode button information: 0=MB1 pressed, 1=MB2 " "pressed, 2=MB3 pressed, 3=release. The upper bits encode what modifiers " "were down when the button was pressed and are added together: 4=Shift, 8=" "Meta, 16=Control. Again I and I are the x and y coordinates of the " "mouse event. The upper left corner is (1,1)." msgstr "" #. type: SS #: man-pages/man4/console_codes.4:457 #, no-wrap msgid "Comparisons with other terminals" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:464 msgid "" "Many different terminal types are described, like the Linux console, as " "being \"VT100-compatible\". Here we discuss differences between the Linux " "console and the two most important others, the DEC VT102 and B(1)." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:466 msgid "B" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:468 msgid "The VT102 also recognized the following control characters:" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:470 msgid "NUL (0x00) was ignored;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:472 msgid "ENQ (0x05) triggered an answerback message;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:474 msgid "DC1 (0x11, B<^Q>, XON) resumed transmission;" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:477 msgid "" "DC3 (0x13, B<^S>, XOFF) caused VT100 to ignore (and stop transmitting) all " "codes except XOFF and XON." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:479 msgid "VT100-like DC1/DC3 processing may be enabled by the terminal driver." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:485 msgid "" "The B(1) program (in VT100 mode) recognizes the control characters " "BEL, BS, HT, LF, VT, FF, CR, SO, SI, ESC." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:487 msgid "B" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:489 msgid "VT100 console sequences not implemented on the Linux console:" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:491 #, no-wrap msgid "ESC N SS2 Single shift 2. (Select G2 character set for the next\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:492 man-pages/man4/console_codes.4:494 #, no-wrap msgid " character only.)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:493 #, no-wrap msgid "ESC O SS3 Single shift 3. (Select G3 character set for the next\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:495 #, no-wrap msgid "ESC P DCS Device control string (ended by ESC \\e)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:496 #, no-wrap msgid "ESC X SOS Start of string.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:497 #, no-wrap msgid "ESC ^ PM Privacy message (ended by ESC \\e)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:498 #, no-wrap msgid "ESC \\e ST String terminator\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:499 #, no-wrap msgid "ESC * ... Designate G2 character set\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:500 #, no-wrap msgid "ESC + ... Designate G3 character set\n" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:513 msgid "" "The program B(1) (in VT100 mode) recognizes ESC c, ESC # 8, ESC " "E, ESC =, ESC D, ESC E, ESC H, ESC M, ESC N, ESC O, ESC P ... ESC \\e, " "ESC Z (it answers ESC [ ? 1 ; 2 c, \"I am a VT100 with advanced video " "option\") and ESC ^ ... ESC \\e with the same meanings as indicated above. " "It accepts ESC (, ESC ), ESC *, ESC + followed by 0, A, B for the DEC " "special character and line drawing set, UK, and US-ASCII, respectively." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:517 msgid "" "The user can configure B(1) to respond to VT220-specific control " "sequences, and it will identify itself as a VT52, VT100, and up depending on " "the way it is configured and initialized." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:522 msgid "" "It accepts ESC ] (OSC) for the setting of certain resources. In addition to " "the ECMA-48 string terminator (ST), B(1) accepts a BEL to terminate " "an OSC string. These are a few of the OSC control sequences recognized by " "B(1):" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:524 #, no-wrap msgid "ESC ] 0 ; I ST Set icon name and window title to I.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:525 #, no-wrap msgid "ESC ] 1 ; I ST Set icon name to I.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:526 #, no-wrap msgid "ESC ] 2 ; I ST Set window title to I.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:527 #, no-wrap msgid "ESC ] 4 ; I; I ST Set ANSI color I to I.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:528 #, no-wrap msgid "ESC ] 10 ; I ST Set dynamic text color to I.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:529 #, no-wrap msgid "ESC ] 4 6 ; I ST Change log file to I (normally disabled\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:530 #, no-wrap msgid " by a compile-time option)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:531 #, no-wrap msgid "ESC ] 5 0 ; I ST Set font to I.\n" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:536 msgid "" "It recognizes the following with slightly modified meaning (saving more " "state, behaving closer to VT100/VT220):" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:538 #, no-wrap msgid "ESC 7 DECSC Save cursor\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:539 #, no-wrap msgid "ESC 8 DECRC Restore cursor\n" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:543 msgid "It also recognizes" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:545 #, no-wrap msgid "ESC F Cursor to lower left corner of screen (if enabled by\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:546 #, no-wrap msgid " B(1)'s B resource)\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:547 #, no-wrap msgid "ESC l Memory lock (per HP terminals).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:548 #, no-wrap msgid " Locks memory above the cursor.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:549 #, no-wrap msgid "ESC m Memory unlock (per HP terminals).\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:550 #, no-wrap msgid "ESC n LS2 Invoke the G2 character set.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:551 #, no-wrap msgid "ESC o LS3 Invoke the G3 character set.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:552 #, no-wrap msgid "ESC | LS3R Invoke the G3 character set as GR.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:553 #, no-wrap msgid "ESC } LS2R Invoke the G2 character set as GR.\n" msgstr "" #. type: tbl table #: man-pages/man4/console_codes.4:554 #, no-wrap msgid "ESC ~ LS1R Invoke the G1 character set as GR.\n" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:560 msgid "" "It also recognizes ESC % and provides a more complete UTF-8 implementation " "than Linux console." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:562 msgid "B" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:576 msgid "" "Old versions of B(1), for example, from X11R5, interpret the blink " "SGR as a bold SGR. Later versions which implemented ANSI colors, for " "example, XFree86 3.1.2A in 1995, improved this by allowing the blink " "attribute to be displayed as a color. Modern versions of xterm implement " "blink SGR as blinking text and still allow colored text as an alternate " "rendering of SGRs. Stock X11R6 versions did not recognize the color-setting " "SGRs until the X11R6.8 release, which incorporated XFree86 xterm. All ECMA-" "48 CSI sequences recognized by Linux are also recognized by I, " "however B(1) implements several ECMA-48 and DEC control sequences not " "recognized by Linux." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:590 msgid "" "The B(1) program recognizes all of the DEC Private Mode sequences " "listed above, but none of the Linux private-mode sequences. For discussion " "of B(1)'s own private-mode sequences, refer to the I document by Edward Moy, Stephen Gildea, and Thomas E. Dickey " "available with the X distribution. That document, though terse, is much " "longer than this manual page. For a chronological overview," msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:594 msgid "E<.UR http://invisible-island.net\\:/xterm\\:/xterm.log.html> E<.UE>" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:597 msgid "details changes to xterm." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:599 msgid "The I program" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:603 msgid "E<.UR http://invisible-island.net\\:/vttest/> E<.UE>" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:608 msgid "" "demonstrates many of these control sequences. The B(1) source " "distribution also contains sample scripts which exercise other features." msgstr "" #. type: SH #: man-pages/man4/console_codes.4:608 #, no-wrap msgid "NOTES" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:611 msgid "" "ESC 8 (DECRC) is not able to restore the character set changed with ESC %." msgstr "" #. type: SH #: man-pages/man4/console_codes.4:611 #, no-wrap msgid "BUGS" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:614 msgid "" "In 2.0.23, CSI is broken, and NUL is not ignored inside escape sequences." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:623 msgid "" "Some older kernel versions (after 2.0) interpret 8-bit control sequences. " "These \"C1 controls\" use codes between 128 and 159 to replace ESC [, ESC ] " "and similar two-byte control sequence initiators. There are fragments of " "that in modern kernels (either overlooked or broken by changes to support " "UTF-8), but the implementation is incomplete and should be regarded as " "unreliable." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:638 msgid "" "Linux \"private mode\" sequences do not follow the rules in ECMA-48 for " "private mode control sequences. In particular, those ending with ] do not " "use a standard terminating character. The OSC (set palette) sequence is a " "greater problem, since B(1) may interpret this as a control sequence " "which requires a string terminator (ST). Unlike the B(1) sequences " "which will be ignored (since they are invalid control sequences), the " "palette sequence will make B(1) appear to hang (though pressing the " "return-key will fix that). To accommodate applications which have been " "hardcoded to use Linux control sequences, set the B(1) resource " "B to true." msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:642 msgid "" "An older version of this document implied that Linux recognizes the ECMA-48 " "control sequence for invisible text. It is ignored." msgstr "" #. type: SH #: man-pages/man4/console_codes.4:642 #, no-wrap msgid "SEE ALSO" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:646 msgid "B(4), B(4), B(7)" msgstr "" #. type: SH #: man-pages/man4/console_codes.4:646 #, no-wrap msgid "COLOPHON" msgstr "" #. type: Plain text #: man-pages/man4/console_codes.4:654 msgid "" "This page is part of release 3.70 of the Linux I project. A " "description of the project, information about reporting bugs, and the latest " "version of this page, can be found at \\%http://www.kernel.org/doc/man-pages/" "." msgstr ""