Reading multi-line records
May 18, 2013 in answer
ANSWER:
It’s because you have spaces after __Data__ in your file. Remove the trailing spaces from your file.
perl -i -ple's/s+z//' logA.txt
May 18, 2013 in answer
ANSWER:
It’s because you have spaces after __Data__ in your file. Remove the trailing spaces from your file.
perl -i -ple's/s+z//' logA.txt
New Comments