in reply to perl one-liner to serve httpd current directory

SimpleHTTPServer is a core python module. Perl does not provide a core HTTP server module. Perl actually removed the core HTTP request processing modules in 2014. Instead of bloating the core, Perl prefers to stay lean by relying on modules installed from the CPAN. As you can see from the other replies there are many Perl HTTP server modules.
  • Comment on Re: perl one-liner to serve httpd current directory

Replies are listed 'Best First'.
Re^2: perl one-liner to serve httpd current directory
by haukex (Archbishop) on Aug 25, 2018 at 07:47 UTC
    Perl actually removed the core HTTP request processing modules in 2014.

    Which modules are that? CGI.pm was removed in Perl 5.022, but CGI is not HTTP (and to be extra nitpicky, 5.022 wasn't released until 2015).