Re: Quoting of signature variable

2000-10-10 Thread raf
Sameh Ghane wrote: > Le Mon, Oct 09, 2000 at 08:40:32PM +0300, Mikko Hänninen ecrivit: > > > > If you want that, then you need to create a shell-script which does the > > expansion for you, and call that from $signature instead. > > A nice way is to use a FIFO: > > mkfifo ~/.sig > > while :;

Re: Quoting of signature variable

2000-10-09 Thread Sameh Ghane
Le Mon, Oct 09, 2000 at 08:40:32PM +0300, Mikko Hänninen ecrivit: > > If you want that, then you need to create a shell-script which does the > expansion for you, and call that from $signature instead. A nice way is to use a FIFO: mkfifo ~/.sig while :; do # Something to populate ~/.sig # ...

Re: Quoting of signature variable

2000-10-09 Thread Bob Bell
On Mon, Oct 09, 2000 at 08:40:32PM +0300, Mikko Hnninen <[EMAIL PROTECTED]> wrote: > Bob Bell <[EMAIL PROTECTED]> wrote on Mon, 09 Oct 2000: > > I'm hoping someone can figure out how to properly quote my signature > > setting. Briefly, I want to set signature to a program, files in a > > director

Re: Quoting of signature variable

2000-10-09 Thread Jamie Novak
On 10/09, Mikko Hänninen rearranged the electrons to read: > Try something like this: > > set signature="sigmaker.pl `echo ~/.quotes/*` |" > > However, this will only expand the list of quotes when your .muttrc is > read, it won't dynamically update it if you add or remove files to/from > the

Re: Quoting of signature variable

2000-10-09 Thread Mikko Hänninen
Bob Bell <[EMAIL PROTECTED]> wrote on Mon, 09 Oct 2000: > I'm hoping someone can figure out how to properly quote my signature > setting. Briefly, I want to set signature to a program, files in a > directory as arguments, and finally a '|' to read the output of the > program. ... > set signatur

Quoting of signature variable

2000-10-09 Thread Bob Bell
I'm hoping someone can figure out how to properly quote my signature setting. Briefly, I want to set signature to a program, files in a directory as arguments, and finally a '|' to read the output of the program. For instance, I started out with: set signature='sigmaker.pl ~/.quotes/*|' but mu