Convert text from comma delimited to newline delimited with a simple command.

Some text files are shipped as comma-delimited files. This can be annoying to fix, but it can be done with the Linux command line. Here is an example of comma-delimited text. jason@jason-desktop:~/Documents$ cat banlist.txt | head -c 200 ; echo 10.34.28.4, 103.11.70.143, 103.11.70.143, 103.22.245.6, 107.20.178.108, 108.163.248.74, 108.21.102.146, 108.62.110.25, 108.62.33.114, 108.62.33.114, 108.62.62.164, 109.162.20.227, 109.162.20.28, 109.1jason@jason-desktop:~/Documents$ cat … Read more