<br><div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><span class="q"><br clear="all"></span>I can do the script, but someone else has to run it since I don't
<br>have access to commit them all.</blockquote><div><br>Here it is dww, enjoy ...<br><br>#!/bin/sh<br>for FILE in `find . -name "*.info"`<br>do<br> ORIG=$FILE.orig<br> cp $FILE $ORIG<br> cat $ORIG | grep -v "version.*=" > $FILE
<br> rm $ORIG<br>done<br></div></div>