blob: 3b619f8c144566cf7bd080d99b67e96d0b0e986a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
sed -i -e 's/> </></g' \
-e 's/ / /g' \
-e 's/\s+$//g' \
-e 's/ width="17" height="17" border="0"//g' \
-e 's/<td [^>]+listhdrr[^>]+>/<th>/g' \
-e 's/<body[^>]*>//g' \
-e 's/<\(table\|td\|span\|div\)[^>]\+>/<\1>/g' \
-e 's/<?php include("fbegin.inc"); ?>//g' \
-e 's/<?php include("fend.inc"); ?>/<?php include("foot.inc"); ?>/g' \
-e 's/<?php echo /<?=/g' \
-e 's/;?\s*?>/?>/g' \
-e 's/<?\s*=\s*/<?=/g' \
$1
|