我们的应用程序使用Strawberry Perl运行,如果安装了任何其他Perl(Active Perl)版本,我们的应用程序将无法运行。有没有办法检查机器上是否安装了多个Perl(Strawberry,Active)版本?
答案 0 :(得分:1)
这将告诉您PATH目录中有多少个perl版本
perl -E '@p = `which -a perl`; printf "%d copies of perl in the path\n", 0+@p'
2 copies of perl in the path