Note to myself: Convert multiple DOS lines into one comma-separated line using this GnuWin command: tr -s "\r\n" ,
. DOS lines use two control characters \r\n
to mark the end of a line. The -s
option replaces multiple original characters with only one replacement character.