Let\'s say I have a script like the following:
useless.sh
echo \"This Is Error\" 1>&2 echo \"This Is Output\"
And I have an
In zsh:
{ . ./useless.sh > /dev/tty } 2>&1 | read ERROR $ echo $ERROR ( your message )