“sed substitua a próxima linha por texto no tubo” Respostas de código

sed substitua por nova linha

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'
Armandres

sed substitua a próxima linha por texto no tubo

sed ':a;N;$!ba;s/\n/ /g' file
Swiss Cheese

Respostas semelhantes a “sed substitua a próxima linha por texto no tubo”

Perguntas semelhantes a “sed substitua a próxima linha por texto no tubo”

Mais respostas relacionadas para “sed substitua a próxima linha por texto no tubo” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código