You are viewing a single comment's thread. Return to all comments →
count=0 awk ' { printf ($0); count++; if (count%2 == 0) printf "\n"; else printf ";"; } '
Seems like cookies are disabled on this browser, please enable them to open this website
'Awk' - 4
You are viewing a single comment's thread. Return to all comments →
count=0 awk '
{ printf ($0); count++; if (count%2 == 0) printf "\n"; else printf ";"; } '