summaryrefslogtreecommitdiff
path: root/fml
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-04-28 09:31:43 +0000
committerfukachan <fukachan>2001-04-28 09:31:43 +0000
commitba66e84e4de2b80750d3abf98c5510da3540858d (patch)
treec4149739f639d8b8db429650e5bc403d912109a6 /fml
parentb7a4c53a22c869702a5d883499a80a258e6f425c (diff)
downloadfml8-snap-20010429.tar.gz
fml8-snap-20010429.tar.bz2
fml8-snap-20010429.zip
documents utilitysnap-20010429
Diffstat (limited to 'fml')
-rwxr-xr-xfml/doc/ja/utils/bin/fix_charset.pl18
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;