Unix Linux Community
converting column to row
Shell Programming and Scripting
complex.invoke
March 4, 2012, 7:55pm
4
tr '\n' ' ' < infile
or
sed -e 'N;N;N;s/\n/ /g' infile
show post in topic