Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    open(INIT, ">doit");
    ...
        printf "%s\n", $_;
    }
    close INIT;
    
  2. or download this
    #!/usr/bin/perl -w
    unlink $0;              # Delete myself!
    
    print "Still here!\n";  # Prove that script executes okay
    # Rest of code follows ...