home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a113 / 1.img / PRGC.BAT < prev    next >
Encoding:
DOS Batch File  |  1987-03-31  |  165 b   |  11 lines

  1. echo off
  2. cls
  3. if not exist %1.* goto all
  4. ren %1.prg %1.src
  5. for %%f in (%1.src) do dbc %%f
  6. goto end
  7. :all
  8. ren *.prg *.src
  9. for %%f in (*.src) do dbc %%f
  10. :end
  11.