Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
The output from this:use strict; my $path = "/web/webpage.html"; my $myfile = "/perl/bin/bas.txt"; open FIL, "$myfile" || die "cant open: $!\n"; open OUT, ">$path" || die "Can't open $path for writing: $!\n"; print OUT <<"EOF"; <html> <head> <title>Title</title> </head> <body> Okay this prints out.<br> $myfile </body> </html> EOF close OUT || die "Can't close filehandle: $!\n"; close FIL || die "no cant close: $!\n";
I need the output to be the contents of the file not the path name, so I am doing something wrong. The output should be:Okay this prints out. /perl/bin/bas.txt
Please advise what I need to change or do to make this work???Okay this prints out. wordOne wordTwo wordThree
|
---|