#!/bin/sh
#
# Here's a startup file for a  web-explorer  that  searches  for  abc
# music files and indexes them. This one does a general search of the
# web, to depth 4, and puts its output into files with "Tune_" at the
# start  of their names.  You might want to twiddle the options a bit
# before running this.

export V_TuneList
V_TuneList=5TestSearch1.out

TuneList \
	+A -art +D2 +orig20 +X4 +K +sTune_ +urls .html=abc .txt=abc -30 \
	< BadURLs \
	http://www.erols.com/olsonw/ \
	> TestSearch1.log

exit 0
