Returns an ANSI sequence to scroll up by n lines.
n
static String scrollUp(int n) => n == 1 ? '\x1b[S' : '\x1b[${n}S';