I have a little QSHELL script that reads a csv file, does some formatting on each word and puts it back into a csv file... sort of.

When I try to append the $WORD to the current line it works fine except when I use a comma. For example this works

Code:
ln=${ln}'comma'${WORD}
...