Next Twelve Talks in One 4

On Forking

The program that makes these slides makes many shell calls

     if (! -e ".bak/$filename" || system("cmp -s $filename .bak/$filename")) { 
       print STDERR "*";
       push @SLIDES, $filename;
     }
     # later, convert each file in @SLIDES from text to HTML


More Details Copyright © 2003 M. J. Dominus