Help for this page

Select Code to Download


  1. or download this
    use Fcntl ':flock';
    flock(file,LOCK_EX);
    seek file, 0, 0;
    
  2. or download this
    #!/usr/bin/perl -wT
    use Fcntl qw(:flock);
    my $file = 'test_lock.txt';
    ...
    sleep 10;
    print "Woken up...\n";
    close S;