Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
#!/bin/sh # html2xhtml -- change old-style uppercae tags to lower case USAGE='html2xhtml file1 [file2] ...' # no arguments? if test $# -eq 0 then echo "$USAGE" >&2 exit 1 fi for f do mv $f ${f}.old || continue sed -e ' s##\ # s### s//sup>/g s/

/p>/g s/ADDRESS>/address>/g s//a>/g s/B>/b>/g s//code>/g s/HREF=/href=/g s/NAME=/name=/g s/CLASS=/class=/g s/VALIGN=/valign=/g s/CITE>/cite>/g s/EM>/em>/g s/STRONG>/strong>/g s/CAPTION>/caption>/g s//\1" \/>/g s/H1>/h1>/g s/H2>/h2>/g s/H3>/h3>/g s/H4>/h4>/g s/H5>/h5>/g s/UL>/ul>/g s/OL>/ol>/g s/DL>/dl>/g s/LI>/li>/g s/Li>/li>/g s/
/
/g s/
/
/g s//table>/g s/THEAD>/thead>/g s/TITLE>/title>/g s/TBODY>/tbody>/g s/HEAD>/head>/g s/BODY>/body>/g s//tr>/g s/TH>/th>/g s/TD>/td>/g s/TD /td /g s/DT>/dt>/g s/DD>/dd>/g s//kbd>/g s/
/
/g s/
/
/g ' ${f}.old > $f done