home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _88dea29ec3ed2933c557491c443f55e8 < prev    next >
Text File  |  2000-03-23  |  3KB  |  87 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>File::Compare - Compare files or filehandles</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> File::Compare - Compare files or filehandles</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#return">RETURN</A></LI>
  26.     <LI><A HREF="#author">AUTHOR</A></LI>
  27. </UL>
  28. <!-- INDEX END -->
  29.  
  30. <HR>
  31. <P>
  32. <H1><A NAME="name">NAME</A></H1>
  33. <P>File::Compare - Compare files or filehandles</P>
  34. <P>
  35. <HR>
  36. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  37. <UL>
  38. <LI>Linux</LI>
  39. <LI>Solaris</LI>
  40. <LI>Windows</LI>
  41. </UL>
  42. <HR>
  43. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  44. <PRE>
  45.         use File::Compare;</PRE>
  46. <PRE>
  47.         if (compare("file1","file2") == 0) {
  48.             print "They're equal\n";
  49.         }</PRE>
  50. <P>
  51. <HR>
  52. <H1><A NAME="description">DESCRIPTION</A></H1>
  53. <P>The File::Compare::compare function compares the contents of two
  54. sources, each of which can be a file or a file handle.  It is exported
  55. from File::Compare by default.</P>
  56. <P>File::Compare::cmp is a synonym for File::Compare::compare.  It is
  57. exported from File::Compare only by request.</P>
  58. <P>File::Compare::compare_text does a line by line comparison of the two
  59. files. It stops as soon as a difference is detected. <CODE>compare_text()</CODE>
  60. accepts an optional third argument: This must be a CODE reference to
  61. a line comparison function, which returns 0 when both lines are considered
  62. equal. For example:</P>
  63. <PRE>
  64.     compare_text($file1, $file2)</PRE>
  65. <P>is basically equivalent to</P>
  66. <PRE>
  67.     compare_text($file1, $file2, sub {$_[0] ne $_[1]} )</PRE>
  68. <P>
  69. <HR>
  70. <H1><A NAME="return">RETURN</A></H1>
  71. <P>File::Compare::compare return 0 if the files are equal, 1 if the
  72. files are unequal, or -1 if an error was encountered.</P>
  73. <P>
  74. <HR>
  75. <H1><A NAME="author">AUTHOR</A></H1>
  76. <P>File::Compare was written by Nick Ing-Simmons.
  77. Its original documentation was written by Chip Salzenberg.</P>
  78. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  79. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  80. <STRONG><P CLASS=block> File::Compare - Compare files or filehandles</P></STRONG>
  81. </TD></TR>
  82. </TABLE>
  83.  
  84. </BODY>
  85.  
  86. </HTML>
  87.