home *** CD-ROM | disk | FTP | other *** search
/ The HTML Web Publisher's Construction Kit / HTMLWPCK.ISO / unix / cgi / vars.csh < prev   
Encoding:
Linux/UNIX/POSIX Shell Script  |  1995-07-11  |  242 b   |  15 lines

  1. #!/bin/csh
  2. # This will echo all of the environment variables that
  3. # are set and their values.
  4.  
  5. cat << EOM
  6. Content-Type: text/html
  7.  
  8.  
  9. EOM
  10. echo
  11. echo "<TITLE>Test</TITLE>"
  12. echo "Environ vars should be listed below"
  13. echo "<LISTING>"
  14. eval 'setenv'
  15.