Help for this page

Select Code to Download


  1. or download this
    sort file1.csv > file1.sort.csv
    sort file2.csv > file2.sort.csv
    comm file1.sort.csv file2.sort.csv
    
  2. or download this
    open FIRST, "first.csv";
    while (my $line = <FIRST>) {
    ...
        close SECOND;
    }
    close FIRST;