in reply to Using Text::Diff in windows perl (activeperl) ??
--lampuse warnings; use strict; use Text::Diff; open (FHANDLE, ">result.diff"); print "test test... \n"; my $diff = diff "./test.txt", "./test1.txt", { STYLE => "Unified" , OU +TPUT => \*FHANDLE }; close(FHANDLE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using Text::Diff in windows perl (activeperl) ??
by mhd (Novice) on Sep 01, 2008 at 15:34 UTC |