home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / vol12n01.zip / COUNT.BAT next >
DOS Batch File  |  1992-07-14  |  313b  |  9 lines

  1. @ECHO OFF
  2. REM COUNT.BAT - counts number of times it's executed
  3. REM   Requires file call_num., initially containing just
  4. REM   one line with the number 0.  Requires file incr.,
  5. REM   containing just one line with the number 1.
  6. COPY call_num. + incr. > NUL
  7. FIND /c "1" call_num. > newcount.
  8. TYPE newcount.
  9.