Skip to content

IND — Index

SequenceESC D
Bytes0x1B 0x44
MnemonicIND
Otty support

Description

Moves the cursor down one row, scrolling the active region if the cursor is at the bottom. Equivalent in effect to LF but encoded as a two-byte ESC sequence — useful inside escape sequences where you don't want to use a raw control byte.

Example

bash
printf 'a\eDb'      # 'a', index down, 'b' (b appears below a, same column)

Otty