in reply to Re^2: parse /etc/passwd and output it as csv in hundred servers
in thread parse /etc/passwd and output it as csv in hundred servers

Those are substitutions with regular expressions. The first one removes everything from the first colon to the newline character while the second turns the newlines into commas.

See Pattern Matching, Regular Expressions, and Parsing in our tutorials section, perlretut and perlre in perldoc for some references.

  • Comment on Re^3: parse /etc/passwd and output it as csv in hundred servers