I have a CSV file. The contents are as follows:
1, 10, 10, 10, 11, 100, 10, 101, 100, 10, 110, 90, 111
Is there a Linux command to take each comma, delete it, and put a newline on the end? So it looks more like this:
1
10
10
10
11
100
10
101
100
10
110
90
111
Help is appreciated! Thanks!