home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- IF EXIST %1.wav GOTO :THERE
- echo The file could not be found. Make sure you did not include the extension
- goto :END
- :THERE
- copy /b header.txt+%1.wav %1.pdb
- echo e 0100 '%1' >name.txt
- echo w >name1.txt
- echo q >name2.txt
- copy name.txt+name1.txt name3.txt
- copy name3.txt+name2.txt name.txt
- debug %1.pdb <name.txt
- :del name?.txt
- :END
- echo on
-