RE: Printing a file from the print statement

2002-02-25 Thread Scot Robnett
That is not working because $cardbody is reading the text between the markers as plain text, not processing commands. Try this instead and see how it works for you. open(OUTFILE,">>$FILE_NAME"); # >> means append to the end # of the file. If you want to

Re: Printing a file from the print statement

2002-02-23 Thread zentara
On Fri, 22 Feb 2002 11:51:59 -0800, [EMAIL PROTECTED] (Sir Douglas Cook) wrote: >How can I make the "Open File and print content statements" work from my sub make_body >when called from sub create_file? The problem seems to be in your "here" document, where you try to expand a variable. There is