Help for this page

Select Code to Download


  1. or download this
    while (<>)
    {
        # edit line if needed.
        print $_;
    }
    
  2. or download this
    my $line = 0;
    while (<>)
    ...
        s/XXXX/YYYY if ($line == 3);  # change third line
        print $_;
    }