Next Twelve Talks in One 5

Unnecessary Shell Calls

        if (! -e ".bak/$filename" || system("cmp -s $filename .bak/$filename")) { 
          print STDERR "*";
          push @SLIDES, $filename;
        }

Do the simplest thing that could possibly work.



More Details Copyright © 2003 M. J. Dominus