Answers for "sed to remove new line"

6

sed remove line containing

sed '/pattern to match/d' ./infile
Posted by: Guest on December-23-2020
0

sed remove all line breaks

tr -d '\n' < input.txt > output.txt
Posted by: Guest on September-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language