Being the very novice perl programmer that I am, I've been looking for this solution for a couple months now, off and on.
Would anyone have an idea why the following procedure would be used (buffering the file, then printing it to the page) instead of the above?
open (FILE, "$path");
while (<FILE>) {
print $_;
}