scott002.zip URL: http://sprawl.sensemedia.net:8080/people/scott/scotlist.htm(l) 2/07/95 Files: scotlist.htm scott.htm scott002.txt 001.htm through 061.htm scotxt02.txt ASCII DOS text list of scott.htm without code Scott002.zip is an interactive web browser home page of 3205 alphabetized web sites in 61 different categories. Unzip scott002.zip into drive:\scott scotlist.htm is the smaller categories homepage and much faster interface than scott.htm. scott.htm is the full 330 K. file. scott002.zip should work with most web browsers. Scott's Internet Hot List Home Page at Ohio State's Free Home Pages http://www-bprc.mps.ohio-state.edu/cgi-bin/hpp?scott.html ftp the entire file scott002.zip from this site. Scott's hotlist is accesible from: Sprawl Sensemedia Free Internet Access http://sprawl.sensemedia.net:8080/people/scott/scotlist.htm(l) Connector, Germany http://www.connector.de/links.html scott002.zip is available from: ftp://hobbes.nmsu.edu/os2/32bit/network/scott002.zip or /os2/incoming ftp://ftp.cdrom.com/.1/os2/new or /.1/os2/incoming/scott002.zip ftp://sprawl.sensemedia.net/people/scott/scott002.zip BBS's 203-622-4740 203-322-4135 203-329-2972 scott002.zip is very useful for navigating the web particularly for first time users. Just open the files scotlist.htm from one's web browser and click onto the categories and sites one desires. scotlist.htm is a much faster browsing page. scotxt02.txt is an ASCII DOS text list of scott.htm scott002.zip is posted as free ware and it may be used on other web home pages to provide other links to the web. scott002.zip will not be upgraded. This is the last version. I recommend looking at the category Internet Lists for other lists also. scott002.zip is the next version of scott001.zip Any feedback would be appreciated. Email comments to: Michael Scott email: mikescot@ix.netcom.com Enjoy surfing the net ! UNIX note: scott002.zip is created with the OS/2 Enhanced Editor on a PC computer. It's URL site at: http://sprawl.sensemedia.net:8080/people/scott/scotlist.htm is running on a UNIX machine. However depending on the UNIX machine and its web browser, it may or may not work. UNIX script from connector.de (it works there) These two scripts worked fine on my Linux 1.0.8 station with perl 5 and an arbitrary shell, say BASH. Main program : -------------------------------------------------------------------------------- #!/bin/bash for f in *htm do echo $f transform.pl $f done -------------------------------------------------------------------------------- "transform.pl" perl conversion program, to be run for every .htm file -------------------------------------------------------------------------------- #!/usr/local/bin/perl # # 1995 by Matthias Reinwarth # provided on an AS IS basis # no warranty etc. ($file) = @ARGV; open (IN,"$file"); $outfile = $file; $outfile =~ s/htm/HTML/g; open (OUT,">$outfile"); while () { $_ =~ s/scott\.htm/SCOTT\.HTML/g; $_ =~ s/scotlist\.htm/SCOTLIST\.HTML/g; $_ =~ s/HTM/HTML/g; print OUT; } close (IN); close (OUT); --------------------------------------------------------------------------------