Imported Upstream version 0.72

This commit is contained in:
TANIGUCHI Takaki
2009-11-21 16:29:02 +09:00
commit a39ce4fddf
879 changed files with 252874 additions and 0 deletions

9
scripts/convert-wgetted.bash Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
cd $1/documentation/wget-tmp
for file in ??/*.html; do
new=`echo $file | sed -e "s/.php?/_/g" | sed -e "s/.php//g"`
to=$1/documentation/$new
cat $file | sed -e "s/.php#/.html#/g" | sed -e "s/.php%3F/_/g" | sed -e "s/.php//g" >$to
done