Had a problem running 'perl import_spells.pl'
it would error out with 'cat' is not recognized as an internal or external command.... etc
after a little searching i found this:
cat -> perl -MExtUtils::Command -e cat
i replaced
@ids=`cat $spellfile`;
with
@ids=`perl -MExtUtils::Command -e cat $spellfile`;
and it ran fine. Hope it helps!
|