Help for this page

Select Code to Download


  1. or download this
    kill 15,$Upload_PID; # Hard-kill and risk half-uploaded temp-files on 
    +disk, if you write them
    kill 10,$Upload_PID; # Send SIGUSR1 to the upload-script
    
  2. or download this
    $SIG{USR1} = sub { unlink $Temp_File; exit; };
    
  3. or download this
    my $Token = unpack('H*',pack('L',time).pack('S',$$));
    
  4. or download this
    $0 .= '('.$Token.')';
    
  5. or download this
    open my $ID_File,'>/dev/shm/tokenfiles/'.$Token;
    print $ID_File $$;
    close $ID_File;