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:
@@ -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.
|
||||
|
||||
|
Reference in New Issue
Block a user