1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 22:02:39 +02:00
It's best advised to refer to the three main basic objects of the STDIO as "Data streams".
This commit is contained in:
AhfricanAce
2025-08-20 16:07:08 +01:00
committed by GitHub
parent 1c8571e484
commit d893d0fe5d

View File

@@ -1,4 +1,4 @@
# Stdout, Stdin, and Stderr
# Data Streams: Stdout, Stdin, and Stderr
Linux processes use three standard data streams: STDIN (input), STDOUT (output), and STDERR (error messages). STDOUT handles normal command output while STDERR specifically handles error messages. You can redirect these streams using operators like `>` for stdout and `2>` for stderr, allowing separate handling of normal output and errors for better scripting and debugging.