Answers for "bash replace comma with newline"

0

bash replace comma with newline

Just use tr command as follow:
tr , '\n' < file	#Replaces all ',' matches for a new line
Posted by: Guest on November-11-2020

Code answers related to "bash replace comma with newline"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language