Help for this page

Select Code to Download


  1. or download this
    # Edit-in-place in multiple files - one file at the time
    
    {
    ...
            print $line;
        }
    }
    
  2. or download this
    # Read multiple lines from multiple files at the same time
    
    my @files = @ARGV;
    ...
            # do something with $line
        }
    }