home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 Mobile / Chip_Mobile_2001.iso / palm / business / mtiwavep / mtiwavep.exe / addhdr.bat < prev    next >
Encoding:
DOS Batch File  |  1998-09-11  |  367 b   |  17 lines

  1. echo off
  2. cls
  3. IF EXIST %1.wav GOTO :THERE
  4. echo The file could not be found. Make sure you did not include the extension
  5. goto :END
  6. :THERE
  7. copy /b header.txt+%1.wav %1.pdb
  8. echo e 0100 '%1' >name.txt
  9. echo w >name1.txt
  10. echo q >name2.txt
  11. copy name.txt+name1.txt name3.txt
  12. copy name3.txt+name2.txt name.txt
  13. debug %1.pdb <name.txt
  14. :del name?.txt
  15. :END
  16. echo on
  17.