#!/usr/bin/perl # install.cgi - extremely basic script that untars and # installs the Commerce.cgi shopping cart program files. # # WARNING! This program will create a directory called /store # within the current directory. If you already have a directory # there with the same name, you run the risk of having files # overwritten - use caution! # # # Rename this file to install.cgi and changes the permissions # (chmod) to 755 print "Content-type: text/html\n\n"; `tar -xvpf commercecgi201.tar`; print < Commerce.cgi Successfully Unpacked

Commerce.cgi


Excellent! It appears that you have successfully installed Commerce.cgi!

IMPORTANT! Please immediately delete this file (install.cgi). This is to avoid accidentally overwriting your Commerce.cgi files later

DELETE install.cgi NOW!


ENDOFTEXT exit;