psl:perlstandard library,主要研究perl的内建函数
perl的模块有内建模块和第三方模块。
perldoc perlocal 查看内置模块
perldoc module-name 查看模块帮助信息
perldoc -m module-name 查看模块源代码
手动安装CPAN上的第三方模块:
perl Makefile.PL
perl Makefile.PL PREFIX=yourpath #安装到指定目录
make
make test
make install
对于需要build的模块:
perl Build.PL
./Build
./Build test
./Build install
自动安装CPAN第三方模块:
perl -MCPAN -e shell #默认设置cpan,进入cpan
sudo cpan #进入cpan的shell
cpan>help #查看cpan帮助
cpan>m #查看cpan所有模块列表
cpan>install module-name #安装模块
cpam>quit #退出cpan
使用cpan命令:
cpan -i module-name #安装模块
cpan -if module-name #强行安装模块
cpan -l #列出安装的模块
cpan -u #升级所有安装的模块
时间: 2024-10-14 15:08:48