Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
      printf "%20s: %-3s\n",$mod,is_module_installed($mod)?"Yes":"No";
    }
    
  2. or download this
    sub is_module_installed
    {
      my($mod)=@_;
      return (system("perl -M$mod -e 1 2>/dev/null") == 0);
    }
    
  3. or download this
    sub is_module_installed
    {
    ...
        _exit($@?1:0);
      }
    }