Quick Tip
Tame Your Terminal Noise: Unified Logging with `2>&1`
Challenge: When running commands in Linux, error messages (stderr) and standard output (stdout) are often interleaved or sent to different destinations, making it difficult to capture and analyze all output consistently, especially in scripts.
The Solution: Redirect both standard error and standard output to a single stream using the `2>&1` shell redirection.
command 2>&1 | tee output.log
Why it works: The `2` represents file descriptor 2 (stderr), and `&1` represents file descriptor 1 (stdout). By redirecting `2` to `&1`, we send all error messages to the same place as standard output. The `| tee output.log` then sends this combined stream to both the console and a file for persistent logging.
Pro-Tip: You can also redirect both streams directly to a file without seeing them on the console by simply using `command > output.log 2>&1`
Linux Tips & Tricks | © ngelinux.com | 7/4/2026
