【perl】インストール済のモジュール確認方

以下コマンド実行でOK

$ find `perl -e 'print "@INC"'` -name 'AnyEvent.pm' -print

'-print' オプションは付けなくても結果変わらなかった。
理由は「評価式が与えられない場合は ‘-print’ が評価式として用いられる」からみたい。

$ man find 
........
-print This primary always evaluates to true. It prints the pathname of the current file to standard output. If none of -exec, -ls, -print, -print0, or -ok is speci-
fied, the given expression shall be effectively replaced by ( given expression ) -print.