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

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Bradford Carpenter
日付:  
To: Exim-users
題目: 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