File::Compare - Compare files or filehandles
use File::Compare;
if (compare("file1","file2") == 0) { print "They're equal\n"; }
File::Compare::cmp is a synonym for File::Compare::compare. It is exported from File::Compare only by request.
File::Compare::compare_text does a line by line comparison of the two files. It stops as soon as a difference is detected. compare_text() accepts an optional third argument: This must be a CODE reference to a line comparison function, which returns 0 when both lines are considered equal. For example:
compare_text($file1, $file2)
is basically equivalent to
compare_text($file1, $file2, sub {$_[0] ne $_[1]} )
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |