Help for this page

Select Code to Download


  1. or download this
    open STDOUT ">whatever.dat";
    # Here comes all the coding
    close STDOUT;
    
  2. or download this
    PRINT   INFO     12December2004 "Importing JOB x into database"
    PRINT   WARNING  12December2004 "Job did already exist"
    STDOUT  ERROR    12December2004 "No permission to overwrite job"
    
  3. or download this
    sub WriteLog
    {
    ...
        print "$script\t$type\t$today\t$log\n";
        close (LOG);
    }