first question

Dears,
Actually i am facing a problem in a UNIX script: I want to convert a column output file to a rows e.g:
from
1234
2345
3456

to
1234 2345 3456

any help please????
Thanks

You can do this.

tr '\n' ' ' < input.file

Thank u,
it works properly...

have a nice day