in reply to Re: Appending string to all lines
in thread Appending string to all lines

Reading about Bareword errors helped me to figure out that I need to pursue your suggestion in using Text::CSV module. I will move in that direction.

Thank you for the assistance.

Replies are listed 'Best First'.
Re^3: Appending string to all lines
by Laurent_R (Canon) on Nov 11, 2016 at 16:22 UTC
    Frankly, IMHO, using Text::CSV for such a simple problem is overkill, since it can be done without any regard to the fact that your file contains CSV data. only need to add a trailer to each line.

    Update: see my post below for a simple solution.