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