1. What does “standard” mean in stderr / stdout?
“Standard” comes from the Unix philosophy (“standard streams”).
Every program automatically starts with three built-in streams:
| Name | Abbrev | FD | Meaning |
|---|---|---|---|
| Standard Input | stdin | 0 | Where the program reads input |
| Standard Output | stdout | 1 | Normal program output |
| Standard Error |