: , . awk script sed script /.
, @Floris , script, GNU awk. , :
$ cat file
1,2.3,2.453,23.5345,
1,2.3,2.453,23.5345,
$
$ gawk -v RS=',\n+$' '{print}' file
1,2.3,2.453,23.5345,
1,2.3,2.453,23.5345
$
RS=',\n+$' awk, 1 , 1 . {print} , '1' , , , , OP awk.