Horje
sed replace with newline Code Example
replace text with sed
sed -i 's/old-text/new-text/g' input.txt
replace delimiter for new line
Just use tr command as follow:
tr , '\n' < file	#Replaces all ',' matches for a new line
sed replace with newline
For substituting with newline use sed command to replace a match with a
not used char and tr command to replace that char with a newline '\n'
#For example:
echo "123." | sed -E 's/([[:digit:]]*)\./\1|next line/' | tr '|' '\n'




Shell

Related
debian install docker-compose Code Example debian install docker-compose Code Example
how to checkout to another branch in git Code Example how to checkout to another branch in git Code Example
how to install pytesseract in rpi Code Example how to install pytesseract in rpi Code Example
get shared mailbox powershell exchange 2010 Code Example get shared mailbox powershell exchange 2010 Code Example
install pycharm ubuntu Code Example install pycharm ubuntu Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9