Get abbreviations : Text « System Functions « Perl
- Perl
- System Functions
- Text
Get abbreviations
#!/usr/bin/perl
use warnings;
use strict;
use Text::Abbrev;
my $abbreviations = abbrev(@ARGV);
foreach (sort keys %{$abbreviations}) {
print "$_ => $abbreviations->{$_} \n";
}
Related examples in the same category