#!/Utils/bin/zsh # Maarten M. Fokkinga, January 2001 # # Produces on standard output the/some people belonging to the top 10K most # cited DUTCH computer scientists, according to http://citeseer.nj.nec.com. # The completeness fully depends on the list of Dutch cs people, made below. #------ setting some parameters ------------------------------ # Where to get the data: TOP10Ksite=http://citeseer.nj.nec.com/allcited.html #DUTCH_CS_PEOPLE= # Enumerated below # Where to find lynx and vim and less UTILSDIR=/Utils/bin # temporary files: TOP10K=/tmp/allcited.txt DUTCH_CS_LIST=/tmp/dutch_cs_list.txt #------ doing the work --------------------------------------- # Outcomment following when $DUTCH_CS_LIST is explicitly listed 3 lines below! #echo Downloading Dutch computer scientists... #$UTILSDIR/lynx -dump $DUTCH_CS_PEOPLE > $DUTCH_CS_LIST # Outcomment following if $DUTCH_CS_LIST is downloaded, 3 lines above. # Making a list of some Dutch cs people # (source: "http://www.cs.kun.nl/~fvaan/PAPERS/citatiescorrecties.txt") # (With a few corrections given by Jan Friso Groote.) cat > $DUTCH_CS_LIST < $TOP10K head -10 $TOP10K echo ... echo echo Searching top10K most cited list for Dutch persons... echo "****** For more press SPACE key; to QUIT press the q key ********" echo " : " /usr/xpg4/bin/grep -w -f $DUTCH_CS_LIST $TOP10K | $UTILSDIR/less -N rm -f $TOP10K $DUTCH_CS_LIST