in reply to using perl plug-ins

Or set your Environment var PERL5LIB to the plugin directory.
export PERL5LIB=$HOME/plug-ins use Find;
And notice, that a dash is not a good choice as part of a directoryname. Even if it does not mater for your example:
use Plug-ins::Find; # is seen by perl as use Plug '-ins::Find';
Boris