I have following script
awk '{printf "%s", $1"-"$2", "}' $a >>positions;
where $a stores the name of the file. I am actually writing column values into the one row. However, I would like to print comma only if I am not on the last line.
Thanks for any help.