home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c500 / 6.ddi / BATCH.SDK / CS.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-05-28  |  252 b   |  14 lines

  1. @echo off
  2. if [%1] == [] goto error
  3. if [%2] == [] goto error
  4. copy null.fil %2
  5. cd %1
  6. copy *.p %2\%1
  7. copy p.bat %2\%1\apply.bat
  8. cd ..
  9. goto end
  10. :error
  11. echo specify directory and sdk samples directory, eg:
  12. echo cs bitmap c:\windev\samples
  13. :end
  14.