March 2002 Perl Hardware Store 19

4. Semaphore Files

         $FILE = '/data/hitcounter';
         print "Content-type: text/html\n\n";
         if (something()) {
           open F, $FILE or die ...;
           print while <F>;
         } else {
           open F, "> $FILE" or die ...;
           my $data = qx{some command};
           print F $data;
         }
         close F;


Next Copyright © 2002 M-J. Dominus