Tagged Questions
2
votes
2answers
515 views
Cleanest Perl parser for Makefile-like continuation lines
A perl script I'm writing needs to parse a file that has continuation lines like a Makefile. i.e. lines that begin with whitespace are part of the previous line.
I wrote the code below but don't ...