Help for this page

Select Code to Download


  1. or download this
    sub autoSubmit{
       print "Would you like the logs submitted? Y\\N?: ";
       my $autoSubmit = getInput;
    ...
       }
       return $autoSubmit;
    }
    
  2. or download this
    sub autoSubmit{
       print "Would you like the logs submitted? Y\\N?: ";
       my $autoSubmit;
    ...
       }
       return $autoSubmit;
    }