Redirection bash merge
examples/intro/redirection_bash_merge.txt
$ ls -l /bin/bash /bing/other >& out (both stdout and stderr go to the same channel) $ ls -l /bin/bash /bing/other &> out (does the same)
$ ls -l /bin/bash /bing/other >& out (both stdout and stderr go to the same channel) $ ls -l /bin/bash /bing/other &> out (does the same)