[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Savannah-hackers-public] git repositories with no description, FYI:
From: |
Jim Meyering |
Subject: |
Re: [Savannah-hackers-public] git repositories with no description, FYI: fixed |
Date: |
Tue, 29 Mar 2011 08:26:54 +0200 |
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