diff options
| author | fukachan <fukachan> | 2001-04-28 09:31:43 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-04-28 09:31:43 +0000 |
| commit | ba66e84e4de2b80750d3abf98c5510da3540858d (patch) | |
| tree | c4149739f639d8b8db429650e5bc403d912109a6 /fml | |
| parent | b7a4c53a22c869702a5d883499a80a258e6f425c (diff) | |
| download | fml8-snap-20010429.tar.gz fml8-snap-20010429.tar.bz2 fml8-snap-20010429.zip | |
documents utilitysnap-20010429
Diffstat (limited to 'fml')
| -rwxr-xr-x | fml/doc/ja/utils/bin/fix_charset.pl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/fml/doc/ja/utils/bin/fix_charset.pl b/fml/doc/ja/utils/bin/fix_charset.pl new file mode 100755 index 00000000..0a6853df --- /dev/null +++ b/fml/doc/ja/utils/bin/fix_charset.pl @@ -0,0 +1,18 @@ +#!/usr/local/bin/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; |
