hi
cat > input 0,4880,1;1,8877,1;2,LT33A,0;3,2224,1;4,4926,1; Output should be like below 0,4880,1 1,8877,1 2,LT33A,0 3,2224,1 4,4926,1
can anybody help me out
hi
cat > input 0,4880,1;1,8877,1;2,LT33A,0;3,2224,1;4,4926,1; Output should be like below 0,4880,1 1,8877,1 2,LT33A,0 3,2224,1 4,4926,1
can anybody help me out
$ echo "0,4880,1;1,8877,1;2,LT33A,0;3,2224,1;4,4926,1;" |awk -vRS=";" 'NF'
0,4880,1
1,8877,1
2,LT33A,0
3,2224,1
4,4926,1