Help for this page

Select Code to Download


  1. or download this
    foreach (@lines) {
    
      my($month, $day, $time, $data1, $data2) = split / /;
      open(NEWTIME, $time);
    
  2. or download this
      while (<NEWTIME>) {
    
  3. or download this
        my($hour, $minute, $second) = split /:/;
        $time2 = join(':', $hour, $minute);
      }
    
  4. or download this
      select NEWLOG;
      print "$time2\n";
    
  5. or download this
      open NEWLOG, ">>foofinal.txt";
    }