The most usual thing I want with redirect is just throwing errors to null:
Terminalcommand >/dev/null
Alternatively, one can throw everything to null:
Terminalcommand >/dev/null 2>1
However, what if you want only error being shown and proper output ignored? Well, there is a redirect for that too:
Terminalcommand 2>1 >/dev/null