Text::Abbrev - abbrev - 从列表中创建缩写表
use Text::Abbrev;
abbrev $hashref, LIST
将 LIST 中每个元素的所有明确截断存储为 $hashref
引用的关联数组中的键。值是原始列表元素。
$hashref = abbrev qw(list edit send abort gripe);
%hash = abbrev qw(list edit send abort gripe);
abbrev $hashref, qw(list edit send abort gripe);
abbrev(*hash, qw(list edit send abort gripe));