help for merging a file

Hi Allwe can split a file using split command.Is there any command to merge two files.Thanks in advance kanki
[137 byte] By [Kanki] at [2007-11-26 10:44:28]
# 1
cat file1 file2 >file3This is really basic unix stuff, not solaris specific.Perhaps you should buy a basic unix book.
robertcohen at 2007-7-7 2:56:30 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 2
RobertI think this will work only for a text file.Actully mine is a database fileThankskanki
Kanki at 2007-7-7 2:56:30 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 3
Unix doesnt have a strong distinction between text and database files.Files are just sequences of bytes. Some programs care as they are looking for the line breaks. Eg grep, sed, awk.But Cat doesnt. It just glues sequences of bytes together.
robertcohen at 2007-7-7 2:56:30 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...