5 lines
74 B
Awk
5 lines
74 B
Awk
BEGIN { FS = "," }
|
|
{
|
|
for(i=1; i <= NF; i++) printf $i ".";
|
|
print ""
|
|
}
|