]> git.pld-linux.org Git - packages/rpm-build-tools.git/blob - get-all-specs.sh
- add CVSROOT
[packages/rpm-build-tools.git] / get-all-specs.sh
1 #!/bin/sh
2 # get only *.spec files from packages/
3 # thx SamChi,pawelz
4
5 # run script in ./packages directory
6
7 # change cvs to your login name
8 CVSUSER=cvs
9
10 export CVSROOT=:pserver:"${CVSUSER}"@cvs.pld-linux.org:/cvsroot
11 cvs login
12 cd .. 
13 wget http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/ -O - | sed '/<a href="\./!d' | sed 's,^.*<a href="\./\(.*\)/".*$,/\1/\1.spec,' | xargs cvs get
This page took 0.062881 seconds and 4 git commands to generate.