cat.py filename ....
Overview
Spits files listed on the command line to stdout (the screen). This is a trivial reimplementation of the unix command cat(1) in Python. It exists to possibly help those working under Windows. For example, using this, it is significantly easier to port generate_table to Windows.
cat.py makes no assumptions about file format, or type, and does no processing of the file streams. Possible problem if trying to read a really large file as a single line(?).