echo off REM REM Go out to the inbound area and grab the latest AtariNet Nodelist. REM Once I have moved it out of there, then I can kill the original file REM that was HATCHed to me by Bill. REM :NODELIST_THERE echo AtariNet Nodelist found...moving it to ParseLst directory... copy atarlist.a* d:\parsers\atnlist.arc REM REM Time to unARC the nodelist and get rid of the archive to save space. REM echo UnARCing AtariNet Nodelist... d: cd \parsers\ echo c:\turbo\bink\whatarc\arc602.ttp -x atnlist.arc *.* echo del atnlist.arc REM REM Let's get dangerous... ;) REM echo Parsing AtariNet Nodelist... echo parselst -cATARPLST.CFG -oATAR REM REM Time to move the generated files to their new home. REM echo Moving generated files to their new home... copy atarlist.dat d:\nodelist\atarlist.dat copy atarlist.fon d:\nodelist\atarlist.fon copy atarlist.idx d:\nodelist\atarlist.idx copy ataruser.lst d:\nodelist\ataruser.lst REM REM Let's kill the files left behind to tidy up things a bit... REM echo Killing files left behind... del atarlist.dat del atarlist.fon del atarlist.idx del ataruser.lst del atarlist.* REM REM Go up top and try for a NODEDIFF... REM echo Trying now for a FIDONET NODEDIFF... Exit 0