>&| word
>&! word
&>| word
&>! word

Redirects both standard output and standard error (file descriptor 2) in the manner of `>| word`.

For example, ./run-prog >&| /dev/null

Source: ZSH Redirection