transpose command

I need to transpose data from one row to one column. If there is any idea to do it would be helpful.

example of input data
314.16177368164102, 314.71533203125, 315.208740234375

wantted output data
314.16177368164102
314.71533203125
315.208740234375

Thank you so much for any advance help.

su_in99

Try this:

tr ',' '\n' < input_file

A simple search for the word "transpose" would yield a number of solutions.

Shell Life,
Thanks a lot for your code
:slight_smile: