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

Same thing hippo did but more idiomatic and less readable. :P

say join ",", "hostname", $user =~ /^([^:]+)/gm;