adam.nz aboutpostsprojectscontact
# ( echo -e "one three"; echo -e "two four" 1>&2 ) 2> >(egrep "o|e")
How to only grep stderr without redirecting all of stderr to stdout. Can use “| tee 2> >(grep …)” on a command which doesn’t support redirection.