System Functions Perl

#!/usr/bin/perl
use warnings;
use strict;
use Text::Abbrev;
my $abbreviations = abbrev(@ARGV);
foreach (sort keys %{$abbreviations}) {
    print "$_ => $abbreviations->{$_} \n";
}