$ strace -p ${PID} -T -ttt -f 2> >(grep -v epoll_wait)
The above command is the same as:
$ strace -p ${PID} -T -ttt -f 2> /tmp/stderr.out
$ grep -v epoll_wait /tmp/stderr.out
$ strace -p ${PID} -T -ttt -f 2> >(grep -v epoll_wait)
The above command is the same as:
$ strace -p ${PID} -T -ttt -f 2> /tmp/stderr.out
$ grep -v epoll_wait /tmp/stderr.out