What does |& (vertical bar, ampersand) mean in bash? For instance.
|&
node app.js |& logger -t my-app &
|& - syntactic sugar for 2>&1 | added to Bash 4.That is, it redirects both standard and erroneous outputs of the command preceding |& to standard input of the next command.
2>&1 |
Extended Bash Scripting Guide Documentation