Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    # REFFILELIST is not the same as $ReferenceFilePath
    
  2. or download this
    open (FILE, $ReferenceFilePath) or die "Can't open file";
    chomp (@REFFILELIST = (<FILE>));
    
  3. or download this
    while (<FILE>)
    {
      chomp;
      #do something
    }