Help for this page

Select Code to Download


  1. or download this
    #!/bin/sh
    echo content-type: text/plain
    echo
    printenv
    
  2. or download this
    #!/usr/bin/perl
    print "Content-type: text/plain\n\n";
    print "$_\t$ENV{$_}\n" for sort keys %ENV;