Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 193 Bytes

pipes.md

File metadata and controls

18 lines (13 loc) · 193 Bytes

Pipes

command >/path/to/stdout.txt 2>/path/to/stderr.txt

Redirect STDERR to STDOUT

command 2>&1

Redirect both STDERR and STDOUT

command &>/path/to/output.txt