Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

replace a newline using sed linux bash

# sed is intended to be used on line-based input. Although it can do what you need.
#A better option here is to use the tr command as follows:
tr '
' ' ' < input_filename

#or remove the newline characters entirely:
tr -d '
' < input.txt > output.txt

#or if you have the GNU version (with its long options)
tr --delete '
' < input.txt > output.txt
Comment

replace a newline using sed linux bash

#All alternatives, unlike sed will not need to reach the last line to begin the process

#with bash, slow
while read line; do printf "%s" "$line "; done < file

#with perl, sed-like speed
perl -p -e 's/
/ /' file

#with tr, faster than sed, can replace by one character only
tr '
' ' ' < file

#with paste, tr-like speed, can replace by one character only
paste -s -d ' ' file

#with awk, tr-like speed
awk 1 ORS=' ' file

#Other alternative like "echo $(< file)" is slow, works only on small files and needs to process the whole file to begin the process.
Comment

replace a newline using sed linux bash

sed ':a;N;$!ba;s/
/ /g' file

:a create a label 'a'
N append the next line to the pattern space
$! if not the last line, ba branch (go to) label 'a'
s substitute, /
/ regex for new line, / / by a space, /g global match (as many times as it can)
Comment

replace a newline using sed linux bash

$ echo 'foo
bar
baz

foo2
bar2
baz2' 
| tr '
' '00' 
| sed 's:x00x00.*:
:g' 
| tr '00' '
'
Comment

sed bash change line

user@cs ~/ $echo -e "I like soccer
You like football" 
| sed '/soccer/c Nobody likes soccer'
Nobody likes soccer
You like football
user@cs ~/ $cat bar.txt
One
Two
user@cs ~/ $sed '/One/c 1' bar.txt
1
Two
Comment

PREVIOUS NEXT
Code Example
Shell :: Excluse certain files with cp command 
Shell :: installing choclatey no adminstrative rights 
Shell :: bit bucket 
Shell :: check head of file 
Shell :: ros2 galactic build from source 
Shell :: UNIX debian ubuntu download python3912 without certificate error 
Shell :: Shebang!!!!--initializes program/code in Linux/Bash 
Shell :: openfoam for ubuntu 
Shell :: git log for all branchs for specific user 
Shell :: chmod by group 
Shell :: micronucleus: error while loading shared libraries: libusb-0.1.so.4: cannot open shared object file: No such file or directory 
Shell :: how to create a soft link in bash 
Shell :: react native requiring unknown modual "1" 
Shell :: run docker yml arch linux 
Shell :: command to search a keyword within files 
Shell :: yaml reuse block 
Shell :: cmd if compare more than 
Shell :: eslint src multiple extensions 
Shell :: command line see whole file contents 
Shell :: How to create a hash file and verify it 
Shell :: upgrade r from consele 
Shell :: remove data from realtime database 
Shell :: autpep8 --in-place --aggressive 
Shell :: after git merge it want to commit message 
Shell :: docker: Cannot connect to the Docker daemon at tcp://localhost:2375. Is the docker daemon running? 
Shell :: bash script bell ping 
Shell :: linux pki wildcard 
Shell :: Wallpaper kali 
Shell :: install special version of npm package 
Shell :: ldocker comand list of images 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =