Thread perl diff tool (9 answers)
Opened by panthera at 2009-11-19 17:06

renee
 2009-11-20 11:30
#128361 #128361
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Ich würde es eher mit dem Vorschlag von murphy probieren. Das dürfte weit weniger Arbeit sein...

Probier mal das (ungetestet):
Code (perl): (dl )
1
2
3
4
5
6
7
8
use IO::File;
my $io_file1 = IO::File->new( $file1, 'r' );
my $io_file2 = IO::File->new( $file2, 'r' );

$io_file1->binmode( ':crlf' );
$io_file2->binmode( ':crlf' );

my $diff = diff( $io_file1, $io_file2, { STYLE => "OldStyle", CONTEXT => "0" });
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread perl diff tool