2023年1月30日星期一

[PERL]Confirm installed module on linux server

 ■以下のコマンドを実行すること確認できる

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

 

■grep で限定表示

 find `perl -e ' print "@INC"' `-name '*.pm' -print | grep LWP


●@INC

Perlの特殊変数

●LWP

Perlモジュール