“Sed Ganti dengan Newline” Kode Jawaban

Ganti teks dengan sed

sed -i 's/old-text/new-text/g' input.txt
Clear Caterpillar

ganti pembatas untuk baris baru

Just use tr command as follow:
tr , '\n' < file	#Replaces all ',' matches for a new line
Armandres

Sed Ganti dengan 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'
Armandres

Jawaban yang mirip dengan “Sed Ganti dengan Newline”

Pertanyaan yang mirip dengan “Sed Ganti dengan Newline”

Lebih banyak jawaban terkait untuk “Sed Ganti dengan Newline” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya