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