summaryrefslogtreecommitdiff
path: root/Input redirection.md
blob: 22055e2410ef2b356471253711ea4a2dff583a73 (plain)
1
2
3
4
`> file.txt` : stdout to file
`2> file.txt`: stderr to file
`2>&1 > file.txt`: stderr to stdout then to file
`&> file.txt`: stderr and stdout to file