Help for this page

Select Code to Download


  1. or download this
    #!/bin/sh
    
    while true
    do
    /path/to/program
    done
    
  2. or download this
    #!/usr/bin/perl
    
    while(1)
     {
       system('/path/to/program');
     }