#!perl use strict; use warnings; print "Content-Type: text/plain\n\n"; my @path = split ';',$ENV{PATH}; print join "\n","$^X - $^V",'PATH', (grep /perl/i,@path),'@INC',@INC;