blob: 20bdaa6a0d383d2261979bc25e7047a11b3f2e03 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Script to extract reference URLS for functions documented in OpenGL man pages
wget -N -r -np http://www.opengl.org/sdk/docs/{man,man2,man3,man4}/
find www.opengl.org -type f -name '*.xml' \
| xargs grep -o '<b class="fsfunc">[^<]*</b>' \
| sed -e 's/<[^>]*>//g' -e 's@^\(.*\):\(.*\)$@\2\thttp://\1@'
|