Which pearl can I use from the windows command line?

Can someone recommend me a Perl interpreter that can run on the Windows command line to read LCOV files (and generate some kind of report)? I looked at genhtml and it looks like it needs a lot of customization and should work in a bash shell environment, which is not very suitable for the Windows command line.

Thanks.

+3
source share
2 answers
  • The easiest perl to use on Win32 is ActiveState ActivePerl .

  • Strawberry Perl gives a more “normal” Perl experience (it includes the C compiler and makes it so that you can do the usual CPAN style installs).

  • Finally, Cygwin is complete in Unix for Windows. Perl is one of many tools available to Cygwin.

  • Indigo Perl is also a bit of a launch, but they have a good kit for testing web applications. They send a compilation of Apache, mod_perl, perl, which is very easy to get started with.

  • win32.perl.org is a useful resource that you should check.

+9
source

Windows Perl interpreters include Cygwin and ActivePerl.

Do you already have a perl script to read genhtml files?

0

Source: https://habr.com/ru/post/1725367/


All Articles