The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Simple::FileDiff - Perl extension for finding [uniq/intersection/difference] of lines among two files

SYNOPSIS

    use Simple::FileDiff;
    my @file = union('or','file1.txt','file2.txt');

    use Simple::FileDiff;
    my @file = diff('diff','file1.txt','file2.txt');

    use Simple::FileDiff;
    my @file = Intrsection('and','file1.txt','file2.txt');

DESCRIPTION

Simple::FileDiff utility or module is very usefull for finding the lines of uniq/difference/intersection of two files, and using this approach, able to find the fastest solutions of three functionalities [uniq/diff/and] for two common files.

AUTHOR

K.Kaavannan, <kaavannaniisc@gmail.com>

BUGS

Here, <<kaavannanwayis@solution4u.com>>

COPYRIGHT AND LICENSE

Copyright (C) 2017 by kaavannan Karuppaiyah

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.22.2 or, at your option, any later version of Perl 5 you may have available.