What are the default Input/Output types?
stdin, stdout, stderr
What are the number representations of I/O types?
stdin = 0 stdout = 1 stderr = 2
What does the > character does in redirection?
redirects standard output to a file overwriting its contents
How can you redirect stdout to a file but appending that content?
> >
How can you redirect the content of a file to a command?
”
What does 2>&1 stands for?
Combines stderr and stdout
What does 2>file means?
Redirect stderr to a file
What does 2> /dev/null means?
Redirect stderr to nowhere