You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
316 B
9 lines
316 B
#!/bin/bash |
|
TODAY=`date +%Y%m%d` |
|
DIR=gl-manpages-1.1-$TODAY |
|
mkdir -p $DIR |
|
for MAN in man4 man3 man2 manglsl ; do |
|
svn co --username anonymous --password anonymous https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/docs/$MAN/ $DIR/$MAN |
|
done |
|
find $DIR -name .svn | xargs rm -rf |
|
tar cJf $DIR.tar.xz $DIR
|
|
|