Help for this page

Select Code to Download


  1. or download this
    print "Directory to install to: ";
    print $log "Directory to install to: ";
    
  2. or download this
    my_print("Directory to install to: ");
    
  3. or download this
    sub my_print {
      my($txt)= @_;
    ...
      return unless $log;
      print $log $txt;
    }