in reply to RE: Environmental Variables
in thread Environmental Variables
Or escape them properly:#!/bin/sh echo content-type: text/plain echo printenv
#!/usr/bin/perl use CGI ":all"; use HTML::Entities; print header, start_html("env"), h1("env"), # can't have h2 without h1, c'mon! table({-border => 1}, Tr([map td([map encode_entities($_), $_, $ENV{$_}]), sort keys %ENV])), end_html;
-- Randal L. Schwartz, Perl hacker
|
|---|