Unix PowerPipes, >, >>, and 2>&1
All courses

Compose small tools into pipelines

| pipes stdout to the next command. > file redirects stdout; 2>&1 merges stderr into stdout.

Best practice: Prefer pipelines over parsing command output in fragile ways — until you need structured data, then reconsider.

Output
Press Run to execute your code.