Help for this page

Select Code to Download


  1. or download this
        next if /^robot/;
        $count++;
        system( ... );
    
  2. or download this
    my $drive;
    my $count = 0;
    open( LIST, "tpconfig -l|" ) or die $!;
    ...
        (system("tpconfig -delete -drive -index ${count}") == 0) or print 
    +"Error deleting: $?";
        $count++;
    }