Help for this page

Select Code to Download


  1. or download this
    #!/bin/ksh
    
    ...
        perl script.pl
        sleep $TIMER
    done
    
  2. or download this
    my $TIMER = 10;
    while (1) {
        do "/path/to/your/script.pl";
        sleep $TIMER;
    }