Merge branch 'master' into merge6
Signed-off-by: Martin Bremmer <martin.bremmer@adlinktech.com>
This commit is contained in:
commit
660d495746
124 changed files with 5049 additions and 1672 deletions
8
docs/compare.pl
Normal file
8
docs/compare.pl
Normal file
|
@ -0,0 +1,8 @@
|
|||
open A, "< $ARGV[0]" or die "can't open $ARGV[0]";
|
||||
open B, "< $ARGV[1]" or die "can't open $ARGV[1]";
|
||||
while (defined ($a = <A>) && defined ($b = <B>)) {
|
||||
$a =~ s/[\r\n]+$//s;
|
||||
$b =~ s/[\r\n]+$//s;
|
||||
print "$ARGV[0] difference detected\n" and exit 1 unless $a eq $b;
|
||||
}
|
||||
exit 0;
|
Loading…
Add table
Add a link
Reference in a new issue