Jean-Marc Lasgouttes wrote:
> Angus> The following authors are present in both lists but their email
> Angus> has changed. (blanket-permission.txt email first):
>
> Angus> Jean-Marc Lasgouttes
> Angus> <jean-marc.lasgouttes () inria ! fr>
> Angus> <jean-marc.lasgouttes () inria ! fr>
>
> Don't you have a slight problem with your scripts?
There are a couple of these rogue entries. You're one. Michael Schmitt is
another. I have no idea why
`test "$LINE1" = "$LINE2"`
flags them as different but I really don't care too much. I'm much more
interested in getting Poenitz on board ;-)
do_loop3() {
echo "$AUTHORS_REPLIED" | while read LINE1
do
AUTHOR=`echo $LINE1 | sed 's/ *<.*//'`
LINE2=`echo "$AUTHORS_ALL" | grep "$AUTHOR *<"` && {
EMAIL1=`echo $LINE1 | sed 's/.*</</; s/> */>/' | \
dd conv=lcase 2>/dev/null`
EMAIL2=`echo $LINE2 | sed 's/.*</</; s/> */>/' | \
dd conv=lcase 2>/dev/null`
test "$LINE1" = "$LINE2" || {
echo "$AUTHOR"
echo " $EMAIL1"
echo " $EMAIL2"
}
}
done
}
LIST3=`do_loop3`
--
Angus