#!/usr/local/bin/perl use warnings; use strict; my $filename = 'your_file'; open my $filehandle, '<', $filename or die $!; while (my $line = <$filehandle>) { print $line; } print "End of File!\n";
In reply to Re: Example for EOF
by jZed
in thread Example for EOF
by l.frankline
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |