Thanks, this seems to work but the
program that takes the input fails after a few
iterations. Maybe the input is too fast for the program?
awk -f tokenScript.awk theInput.txt
------- script file ----------
BEGIN {FS = ","}
{
for (i = 1; i <= NF ; i++)
{
print $i
}
}