summaryrefslogtreecommitdiff
path: root/fml/doc/ja/tutorial/.fix_charset.pl
blob: fa779938bf863d6be0427b9c24b3dd227f3bedb9 (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 2001/04/23 17:15:52 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;