blob: 5038cc9bab34cb23c0eb83ce4512f8d76c0d27d5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/perl -w
# Stupid script to fix look of html files created with sgml2html...
foreach (@ARGV) {
print "Fixing... $_\n";
system("mv $_ $_.orig");
system("sed -e 's/<BODY>/<BODY BGCOLOR=\"#FFFFFF\">/g' -e 's/<HR>/<HR NOSHADE>/g' $_.orig > $_");
unlink("$_.orig");
}
|