#!/bin/sh echo Content-type: text/html echo #echo Query is "$QUERY_STRING"|mailx -s lookup dick@csci.csusb.edu SEARCH=`echo "$QUERY_STRING"| sed '/search=/s/search=\([^&]*\)/\1/'|/u/faculty/dick/bin/urlunencode` echo "$QUERY_STRING" echo "" if [ x"$SEARCH" = x ] then echo Please supply a search string, reference or SUBJECT below else echo "

Items in bibliography containing a string matching \"$SEARCH\"

" awk '/^\. /{item_name=$0; printed=0;} /'"$SEARCH"'/{if(!printed)print substr(item_name,3); printed=1;}' /ftp/pool/u/faculty/dick/ftp/newbib.mth | sed 's/.*/&<\/A>, . . . /' fi echo "
" echo "The following are" echo "a very rough prototype for a Java-based system being" echo "developed as a graduate project." echo "

Find Item in Bibliography" echo "

" echo "Input a name of Item or a Subject(lists of these below):" echo "

" echo "Select to Submit your Request " echo "
" echo "

Search for items containing a matching string" echo "

" echo "Input a regular expression:" echo "

" echo "Select to Submit your Request " echo "
" echo "

List of all" echo "Items by name." echo "

List of all" echo "Subjects." echo "


" echo "More of my research" echo ""