--On Friday, September 05, 2003 15:46:18 -0500 "Segree, Gareth"
<Gareth.Segree@???> wrote:
> I tried to view the header by doing the following
>
> exiqgrep -f "<>" -i | xargs exim -Mvh
>
> But get the following *** Only one message can be listed at once
> I guess that's because all msg id are thrown at the command.
A quick scan of the xargs(1) man page would suggest:
exiqgrep -f "<>" -i | xargs -n 1 exim -Mvh
-Pat