home *** CD-ROM | disk | FTP | other *** search
/ CBM Funet Archive / cbm-funet-archive-2003.iso / cbm / c128 / os / cs-dos / cs-batch.sfx / locate < prev    next >
Encoding:
Text File  |  1990-02-12  |  238 b   |  16 lines

  1. pushdir
  2. if"%1"=" "goto noarg
  3. echo Drive A:
  4. if exist a:%1 dir/w a:%1
  5. echo Drive B:
  6. if exist b:%1 dir/w b:%1
  7. echo Drive C:
  8. if exist c:%1 dir/w c:%1
  9. echo Drive D:
  10. if exist d:%1 dir/w d:%1
  11. goto end
  12. :noarg
  13. echo Syntax: %0 filespec
  14. :end
  15. popdir
  16.