- 论坛徽章:
- 0
|
自己动手转换一下即可。
- #!/usr/bin/perl -W
- #
- # File: find.pl
- use strict;
- use warnings;
- use File::Find;
- use Encode;
- use Encode::Guess;
- use Encode::HanConvert;
- sub process($) {
- my $file = shift;
- local *FH;
- if (!open(FH, "<$file")) {
- die "Cannot read $file: $!";
- }
- local $/ = undef;
- my $content = <FH>;
- close(FH);
- unlink($file);
- my $enc = guess_encoding($content, qw/cp936 utf8/);
- if (!ref($enc)) {
- warn "Cannot guess: $enc";
- return undef;
- }
- $content = encode($enc, trad_to_simp(decode($enc, $content)));
-
- if (!open(FH, ">$file")) {
- die "cannot write $file: $!";
- }
- print FH $content;
- close(FH);
- return 1;
- }
- my @filelist = ();
- find(sub{
- my $file = $File::Find::name;
- push(@filelist, $file) if($file =~ /\.htm$|\.html$/);
- },
- ".");
- foreach(@filelist) {
- print $_, "\n";
- process($_);
- }
复制代码
[ 本帖最后由 路小佳 于 2007-3-5 19:18 编辑 ] |
|