Chris Montgomery wrote: > Friday, August 30, 2002, 5:29:37 PM, Duke Hillard wrote: > > DH> A number of Analog users have written helper applications. > DH> Some have been submitted to Stephen Turner (Analog author) > DH> to be included on his Helper Applications page. If you browse > DH> to "http://www.analog.cx/helpers/" and select "Pre-processing", > DH> the first entry (adddates.pl, logfix.vbs and convlog) explains the > DH> issue that you face and provides links to helper applications. > > I downloaded and ran the logfix.vbs on one file (as a test) and it > seems to work fine. Now I have about 150 more to convert. Does anyone > know if there is a way to run all files through at once that need to > be converted with logfix.vbs, maybe using a batch file?
>From a command prompt, type: FOR %f IN (*.log) DO logfix %f (If you want to put this in a batchfile, you'll have to use %%f instead of %f). Aengus +------------------------------------------------------------------------ | This is the analog-help mailing list. To unsubscribe from this | mailing list, go to | http://lists.isite.net/listgate/analog-help/unsubscribe.html | | List archives are available at | http://www.mail-archive.com/[email protected]/ | http://lists.isite.net/listgate/analog-help/archives/ | http://www.tallylist.com/archives/index.cfm/mlist.7 +------------------------------------------------------------------------
