Help for this page

Select Code to Download


  1. or download this
    $file = 'c:\test.txt';
    open F, ">$file" or die "Can't open $file $!\n";
    # uncomment this to gain permission to unlink $file...
    # close F;
    unlink $file or die "Can't unlink $file $!\n";
    
  2. or download this
    $file = "c:\\test.txt";
    `dir c: > $file`;
    unlink $file or die "Can't unlink $file $!\n";
    
  3. or download this
    perl somscript.pl > somefile.txt; del somefile.txt