cd /tmp; echo -n 'tee ' ; for (i in 1 2 3) { echo -n ' >{echo '$i' received ; cat }' } ; echo echo 'testing' | tee >{echo 1 received ; cat } >{echo 2 received ; cat } >{echo 3 received ; cat } cd /tmp; echo 'testing' | tee >{echo 1 received ; cat } >{echo 2 received ; cat } >{echo 3 received ; cat } 3 received 2 received 1 received testing testing testing testing cd /tmp;