Output redirections and pipelining in shell commands may be shorten.
Here are some examples
1> shortened with just >
1>
>
1>file 2>&1 shortened with >&file or with &>file
1>file 2>&1
>&file
&>file
2>&1 | other_program shortened with |& other_program
2>&1 | other_program
|& other_program