Help for this page

Select Code to Download


  1. or download this
    So there is no temp file concept. I have to create unique names to use
    + in the same file.
    
  2. or download this
    my $counter = 0;
    sub unique_stamp {
        return join '_', $$, time, $counter++;
    }