Re: [exim]message content not seen in pipe in filters, worki…

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Bradford Carpenter
Fecha:  
A: Exim-users
Asunto: Re: [exim]message content not seen in pipe in filters, working in perl, not in shell
On Wed, 25 Aug 2004 22:46:01 -0400, xavier wrote:

> pipetest.sh :
>
> #!/bin/sh
> echo $@ > /tmp/testmsg
> cat >> /tmp/testmsg
> exit 0



I believe you want to use the tee command rather than echo $@. $@ just
gets you the parameters, not stdin.

Brad