File Perl

#!/usr/bin/perl -w
# tail2.pl
use strict;
open(FILE, '<', 'yourFile.txt') or die $!;
my @speech = ;   # slurp the whole file into memory
close FILE;
print "Last five lines:\n", @speech[-5 .. -1];