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