bash/sed/awk/etc remove every other newline
        Posted  
        
            by 
                carillonator
            
        on Server Fault
        
        See other posts from Server Fault
        
            or by carillonator
        
        
        
        Published on 2012-03-29T23:53:37Z
        Indexed on 
            2012/03/30
            17:32 UTC
        
        
        Read the original article
        Hit count: 430
        
a bash commands outputs this:
Runtime Name: vmhba2:C0:T3:L14
Group State: active
Runtime Name: vmhba3:C0:T0:L14
Group State: active unoptimized
Runtime Name: vmhba2:C0:T1:L14
Group State: active unoptimized
Runtime Name: vmhba3:C0:T3:L14
Group State: active
Runtime Name: vmhba2:C0:T2:L14
Group State: active
I'd like to pipe it to something to make it look like this:
Runtime Name: vmhba2:C0:T1:L14 Group State: active 
Runtime Name: vmhba3:C0:T3:L14 Group State: active unoptimized
Runtime Name: vmhba2:C0:T2:L14 Group State: active
[...]
i.e. remove every other newline
I tried ... |tr "\nGroup" " " but it removed all newlines and ate up some other letters as well. thanks
© Server Fault or respective owner