Skip to content

Commit fa36f88

Browse files
committed
- Added downloadable docs and generation tool.
SVN Rev: 1593
1 parent 3f79dd8 commit fa36f88

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

html/files/docs.tar.gz

38.6 KB
Binary file not shown.

make-docs.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
3+
rm files/docs.tar.gz
4+
for i in docs*; do
5+
j=`echo $i | sed 's/.php/.txt/'`
6+
lynx -dump -nolist http://xdebug/$i > /tmp/$j
7+
echo $i
8+
done
9+
tar -cvzf files/docs.tar.gz /tmp/docs*.txt

0 commit comments

Comments
 (0)