home *** CD-ROM | disk | FTP | other *** search
-
- @echo off
- rem
- rem
- rem TAGGER UTILITY ----------------------------------ejb
- rem This can be used as a model for executing a listing
- rem program which can use TAGGER to tag file names.
- rem It then executes a modem program ,the previous TAGGED
- rem list can then used for down-loads ....
- rem example c:>getfiles sscfiles (stockton)
- rem c:>getfiles compudat (compudata)
- rem
- rem check if tagger is installed
- if "%tagin%"=="1" goto ready
- rem tagger was not installed ,execute this bat by tagger
- tagger command /c %0 %1
- goto exit
- :ready
- rem
- rem Unarchive the bbs file list
- rem check for both kinds
- if exist \arc\%1.zip pkunzip \arc\%1
- if exist \arc\%1.arc pkunpak \arc\%1
- rem
- rem Use a listing program to page through the file list.
- rem
- if %1 == COMPUDAT goto comp
- if %1 == compudat goto comp
- rem is stockton ,no txt extension
- list %1
- del %1
- goto ldone
- :comp
- list %1.txt
- del %1.txt
- rem
- rem We now have the files needed in TAGGER
- :ldone
- rem
- rem Change directory to our MODEM program
- cd \boyan
- rem
- rem Execute the modem program ,TAGGED Files Available
- boyan
- :exit
-