summaryrefslogtreecommitdiff
path: root/fml/doc/ja/utils/bin/fix_charset.pl
blob: 671361b221146d0de161771936d7b731e0d4ee06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env perl
#
# $FML: fix_charset.pl,v 1.1.1.1 2001/04/28 09:31:43 fukachan Exp $
#

use strict;

my $meta = q#
<META http-equiv="Content-Type"
        content="text/html; charset=EUC-JP">
#;

while (<>) {
	s/<META/${meta}$&/;
	print;
}

exit 0;