Jeff King <peff@xxxxxxxx> writes: > PS Outside of our test scripts, I'd probably just have written: > > perl -lpe 'print "extra line" if $. == 2' > > I think we have traditionally preferred sed/awk to perl, but given > the heavy use of vanilla perl elsewhere in the test suite, I think > that is maybe just superstition at this point. I would have avoided sed with 'a', 'i' and 'c' in one-liners myself, and a Perl script like the above would probably have been my choice.