Put the text to print in a separated file. Let " f " be this file.
Using perl 48 chars:
Cheating :) ?
Using perl 48 chars:
open(FILE,"f");while(<FILE>){print$_;}closeFILE;
Using Bash.. well 4 chars:
cat f
Cheating :) ?