What is the standard input file descriptor?
0
What is the standard output file descriptor?
1
What is the standard error file descriptor?
2
What is a bit bucket?
/dev/null
How do you send command output to a file descriptor?
command >&n where n is file descriptor 0,1, or 2.