home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo *QBXDBF
- if exist xdata1 goto :run2
- echo This will rename the current xdata1.dat to xdata1 and create a 16,000
- echo record xdata1.dat by duplicating the 2048 records in xdata1 8 times.
- echo The new xdata1.dat will be 671,744 bytes.
- echo Press Ctrl-C to quit or
- pause
- ren xdata1.dat xdata1
- copy xdata1/b+xdata1/b+xdata1/b+xdata1/b+xdata1/b+xdata1/b+xdata1/b+xdata1/b xdata1.dat/b
- goto :done
- :run2
- echo Already run. Doing it again will create a much larger data file.
- :done
-