vote up 2 vote down star

Hi,

With a simple bash script i generate a text file with many entrys like this:

192.168.1.1
hostname1
192.168.1.2
hostname2
192.168.1.3
hostname3

Now i want to reformat this file, that it looks like this:

192.168.1.1 hostname1
192.168.1.2 hostname2
192.168.1.3 hostname3

Some ideas to solve this? Sed maybe?

Thanks for help and best regards. :)

flag
1  
why don't you generate you file in the desirable format to begin with? – SilentGhost Oct 3 at 14:27

2 Answers

vote up 5 vote down check
$ sed '$!N;s/\n/ /' infile
192.168.1.1 hostname1
192.168.1.2 hostname2
192.168.1.3 hostname3
link|flag
Would you please explain how it come to be? – NawaMan Oct 3 at 14:57
thanks. exactly what i search. :) – Peter Parker Oct 3 at 15:03
@NawaMan: If you mean "how does it work?" then: If not (!) the last line ($) then append the next line (N) and replace the newline between them with a space (s/\n/ /) and repeat starting with the next line (which will be the 3rd, 5th, etc.). – Dennis Williamson Oct 3 at 17:07
:-D Thanks. The just too crypt-ed. – NawaMan Oct 3 at 23:20
vote up 2 vote down

Here's a shell-only alternative:

while read first; do read second; echo "$first $second"; done
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.