Consider the following command line: ./myprog.sh 1>&2 2> fil…

Consider the following command line: ./myprog.sh 1>&2 2> file.1.txt 3>&2 2> file.2.txt 1>&3 Can you explain to what the STDOUT and STDERR of myprog.sh end up being connected (1pt) and propose the simplest set of redirections that would achieve the same result (1pt).