Mercurial > pub > Impl
view conv.pl @ 414:ec6f2d389d1e ref20150831
working on IMPL::Config::Bag
| author | cin | 
|---|---|
| date | Fri, 02 Oct 2015 06:56:24 +0300 | 
| parents | 47dac58691ee | 
| children | 
line wrap: on
 line source
#!/usr/bin/perl use strict; use File::Find; find(sub { open my $hfile, "<:encoding(cp1251)", $_ or warn "failed: $!" and return; my @data = <$hfile>; close $hfile; undef($hfile); chomp foreach @data; open $hfile, ">:encoding(utf8)", $_ or warn "failed: $!" and return; print $hfile "$_\n" foreach @data; }, qw(Lib _test _doc));
