Bash script to display result in table

My script gives the following result. Is it possible to display the same in table format ?

1. 
rex_best
Latest feeds are not avaialable. The last feed was generated on 2012-05-17
File Name =  ekb_best_20120517_010949_665.tar.gz
The Number of entry elements = 4209539

2.
rex_genre
Latest feeds are available
File Name =  ekb_genre_full_20120521_045447_822.tar.gz
The Number of entry elements = 85

Thanks,
Kishore

What's meant by TABLE FORMAT???

If you try

paste -d '|||||\n' -s <file_name>

, is that what you want?

An example with "|" as field separator:

awk -F"\n" '$1=$1' RS= OFS="|" file