Le Mon, 24 Jan 2005 23:24:45 -0800, buck a écrit*:
> Can you please help me determine where there are unmatched quotes (")
> in my .mailfilterrc file?
> TIA, I'm crosseyed looking at 377 lines :<
I bet you are

)
Here, some funny way to do this, guess it's a bit of
an overkill but times are this mood these years ...
cat << _EOF_ >> GRUMPF
#!/bin/sh
#########
mkfifo TOTOPIPE
mkfifo TOTOPIPE2
TOTO=$1
sed 's/[^\"]//g' $TOTO | sed 's/\"\"//g' > TOTOPIPE &
seq 1 $(wc -l $TOTO | cut -f1 -d' ') >TOTOPIPE2 &
paste TOTOPIPE TOTOPIPE2 | grep '^\"'
rm -f TOTOPIPE TOTOPIPE2
_EOF_
Have fun

)