For example
echo \"aaa\" |& cat
What does |& mean here?
|&
Is there a website recommended to look up those? Since m
This operator pipes both standard output and standard error from the left hand side to the right hand side.
The Bash reference manual has a comprehensive index of all operators where you can lookup these operators.