home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 197 / DOS5BAT.ZIP / HEXSIZE.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-11-03  |  503 b   |  23 lines

  1. @ECHO OFF
  2. REM This is HEXSIZE.BAT
  3. REM
  4. REM HEXSIZE.BAT reports the hex size of any file. You
  5. REM must have DEBUG in the path for this to work.
  6. REM
  7. IF %1!==! GOTO OOPS
  8. REM Be sure "rcx" in next line is lowercase
  9. ECHO rcx > SCR
  10. ECHO. >> SCR
  11. ECHO Q >> SCR
  12. ECHO @ECHO OFF> CX.BAT
  13. ECHO ECHO Length %1 (in hex) is %%1 >> CX.BAT
  14. DEBUG %1 < SCR | FIND "CX" > GO.BAT
  15. CALL GO
  16. DEL SCR
  17. DEL CX.BAT
  18. DEL GO.BAT
  19. GOTO END
  20. :OOPS
  21. ECHO Enter name of file whose length
  22. ECHO you want in hex notation
  23. :END