Karl Berry wrote:
> Does anyone know an easy way to determine which is which?
>
> savannah.gnu.org:/var/www/overlay/cooperation/groups.tsv
> is a .tsv dump of sv projects with their type (gnu, nongnu, etc.).
>
> If not, I'll just redo it without the GNU prefix.
>
> I think that would be better anyway. Less information, less chance for
> it to be wrong :).
I've done that by running the following, with the list of files in
~/no-desc-projects:
cd /srv/git
for desc in $(find . -maxdepth 2 -name '?*.git' |sed 's,$,/description,'); do
proj=$(echo $desc|sed 's,.*/\(.*\)\.git/description$,\1,')
echo $proj|grep --color -w -F -f ~/no-desc-projects \
&& { echo "$proj" > $desc; }
done