awk 'BEGIN{RS="/"} {gsub("\n","");print}' filename
This sets the record separtor to a character that doesn't exist in the source file (in my case a slash). The for each line read, strip off the newlines and print. This will concatenate all the lines in the file to one massive output.
If you just wanted to join adjacent lines, then this does not work, and
something along the lines of:
awk '{gsub("\n","");getline x;printf "%-s%-s\n",$0,x}' filename
should work.
This reads a line (automatically), uses getline to 'read' the next line into x, then prints the original row and x followed by a newline.
I'm not an expert so there may be easier ways of doing the same...