Perl. Write a program which prints out the file size, modification time, and filename for each file mentioned in @ARGV. Hints: The result of the stat function is an array where $stat[7] is the file size and $stat[9] is the modification time. To format the time as required, use the following statement. [3V] $time = strftime "%b %e %H:%M", localtime $stat[9]; -bash-60$ ls.perl *.perl 84 Nov 12 13:37 count.perl 240 Nov 16 12:39 euclid.perl 253 Nov 25 19:03 ls.perl 110 Dec 5 17:53 range.perl 91 Mar 14 21:31 wc.perl