On Wed, May 4, 2016 at 10:06 PM, Jeff King <peff@xxxxxxxx> wrote: > Would: > > open(my $files, '-|', qw(git ls-files)); > while (<$files>) { > chomp; > ... > } > > make sense? Or a simpler but non-streaming spelling: > > my @files = map { chomp; $_ } `git ls-files`; As a minor sidenote you can equivalently write that as: chomp(my @files = `git ls-files`); I.e. chomp itself when given a list will chomp each item of the list. So no need for a map. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html