Split Long Strings
Split long strings (or command outputs) onto multiple lines Find and replace a particular char (maybe :
) with a \n
.
... | tr ':' '\n'
... | sed 's/:/\n/g'
Split long strings (or command outputs) onto multiple lines Find and replace a particular char (maybe :
) with a \n
.
... | tr ':' '\n'
... | sed 's/:/\n/g'