in reply to Yet another one-liner

Since it seems like you are using unix, here is a non-perlish solution:
(echo ""; cat foo1) > foo1.new
And for many files (in tcsh):
foreach f ( foo* ) (echo ""; cat $f) > $f.new end