Help for this page

Select Code to Download


  1. or download this
    BEGIN{require Win32::Console;Win32::Console::Free() if ($^O eq "MSWin3
    +2");} 
    #sets file to remove
    my $file = "puk.log";
    # Removes file if file exists and file is larger than 200k
    unlink "$file" if(-e $file and -s $file > 200000);