モジュールの使用 11 プログラム実行前にモジュールを読み込む Perlでは-M Rubyでは-r 例 perl -MDate::Manip -le 'print UnixDate(ParseDate("+3d"), "c")' perl -MEnv -le 'print "$HOME, $TZ, $DISPLAY"' perl -MJcode -ne 'print Jcode->new($_)->euc' ruby -rkconv -ne 'print Kconv::toeuc($_)'