Skip to content

CUD — Cursor Down

SequenceCSI <n> B
Bytes0x1B 0x5B <n> 0x42
MnemonicCUD
Otty support

Description

Moves the cursor down <n> rows in the current column. Default <n> = 1. Does not scroll — clamps at the bottom of the active region.

Example

bash
printf '\e[3B'      # move 3 rows down

Otty