#/usr/bin/perl # program1.cgi is invoked by a web browser # print < this output should come up while program2.cgi is still thinking EOF # at this point, we want to invoke program2.cgi and terminate program1.cgi exit 1; #### #/usr/bin/perl # program2.cgi does something incredibly long but has no output to STDOUT, so we would like this sucker to run independently of program1.cgi. sleep 200; exit 1;