|
|
|
|
|
by Joker_vD
37 days ago
|
|
> Tools that detect "am I in a TTY" via isatty() behave differently from tools that stat() stdin Wait, how do you even use fstat's output to find out if the file is a tty? Although in my experience the "funniest" part is deciding whether to use isatty() on stdin or on stdout. I mean, there is no much point enabling line editing/tab completion if stdin is a pipe/regular file, right? |
|
The stdin-vs-stdout split is where I see the most actual "is this a TTY" mistakes though. Tools that emit JSON-on-stdout-when-piped and TUI-when-not work fine until something stuffs them into a PTY with piped stdin — then they're in TUI mode but can't actually read the user input format they expect.