paste <(cut -f1 file1) <(cut -f3 file2) | tee >(process1) >(process2) >/dev/null
paste <(cut -f1 file1) <(cut -f3 file2) > >(process1) > >(process2)
http://zsh.sourceforge.net/Doc/Release/Redirection.html#Redi...
http://zsh.sourceforge.net/Doc/Release/Redirection.html#Redi...