Jeff's Page of pictures
120256.gif
ALBA030.JPG
BroadWayInnMap.gif
CyberCam.gif
Daniels_summit.jpg
Daniels_summit.jpg
Elephant1.gif
Elephant2.gif
FromWGT2HampshireBroadwayHotel.gif
JS&DinMtRanier.jpg
JS&DinMtRanier.jpg
LeapYearFlowChart.gif
LynchFamily.jpg
LynchFamily.jpg
New_York_City.jpg
New_York_City.jpg
Perl_Monger.gif
SanJoseWalk.gif
Scopingmaps4.jpg
Scopingmaps4.jpg
Scopingmaps4R.jpg
Scopingmaps4R.jpg
TheHampshireBroadwayHotel.gif
WinterGardenMap.gif
apache_pb.gif
blacknwhite.JPG
chris&fam.JPG
chris&sarah.JPG
cousins.JPG
java_diploma.jpg
dunebuggy.JPG
eniac.jpeg
evil.JPG
fam&cat.JPG
family.JPG
front.jpg
front.jpg
guildbanner.gif
halloween.JPG
hermanos.JPG
home.gif
hubble.jpg
hubble.jpg
hubble_quarter.gif
javalogo52x88.gif
lTN_avotc.gif
left.jpg
left.jpg
link3.gif
lynch.JPG
mars.jpg
mars.jpg
mom.JPG
mom2.jpg
mom2.jpg
nph-usnoclock.gif
overallc.gif
padre.JPG
party.gif
portrait.jpg
portrait.jpg
poweredby.gif
ratboy.JPG
sarah r.JPG
sarah_in_tree.jpg
sarah_in_tree.jpg
sarahcrazy.JPG
shoot.JPG
sniper.JPG
statsci.gif
statsci_logo.gif
toGrandCentralStation.gif
toIntepid.gif
toMars2112.gif
toTheMet.gif
toocute.jpg
toocute.jpg
tummy.JPG
votetoday.gif
This page was generated with the following HTML code: createPictureList.pl
#!/bin/perl5
#!
print "\$ARGV[1]=$ARGV[1]\n";
if ( $ARGV[1] eq "html" || $ARGV[1] eq "Html" || $ARGV[1] eq "HTML")
{
system("ls *.htm *.HTM *.html *.HTML *.Htm *.Html >htmls.txt");
open (IN, "
open (OUT, ">htmls.html") || die ("unable to open htmls.html for writing");
}
else
{
system("ls *.gif *.GIF *.jpg *.JPG *.jpeg *.JPEG *.Gif *.Jpeg *.jpg >pictures.txt");
open (IN, "
open (OUT, ">pictures.html") || die ("unable to open pictures.html for writing");
}
print OUT<
Jeff's picture page
Jeff's Page of pictures
EOH
;
while ( ) {
chop;
print OUT ''.$_.''."\n";
}
close ( IN );
print OUT<
This page was generated with the following HTML code: $0
EOF
;
open (IN, "<$0") || die ("unable to open pictures.txt for reading");
while ( ) {
chop;
print OUT $_."
\n";
}
print OUT "
";
close IN;
close ( OUT );