Project

General

Profile

Download (563 Bytes) Statistics
| Branch: | Tag: | Revision:
1
#!/bin/sh
2

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