[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Nmh-workers] Pick getting all addressees/senders
From: |
belg4mit |
Subject: |
Re: [Nmh-workers] Pick getting all addressees/senders |
Date: |
Sat, 13 Nov 2010 18:21:17 -0500 |
>That wouldn't let me do
>
> pick -addressee foo -o -addressee bar
And then you're getting into hideously long command lines and slow execution
times...
But you could easily do:
pick `addressee foo` -or `addressee bar`
if you think that's really something you are going to run into. You could even
script
away that "complexity" if you want, but it's all a matter of laziness/verbosity
in
usage versus code. But frankly, my original solution is fine. You just need to
repeat the command for each of foo, bar, qux, appending the results to a
sequence.