home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 114 / CDRom114.iso / avid / aviwav / wildcards_sample.bat < prev   
Encoding:
DOS Batch File  |  2001-10-08  |  697 b   |  28 lines

  1. @echo off
  2. :-------------------------------------------------
  3. : sample of useage wildcards with AVI2WAVCMD
  4. : (c)2000-01 m&g software, Arminio_Grgic@Yahoo.com
  5. :-------------------------------------------------
  6.  
  7. echo Sample of useage wildcards with AVI2WAVCMD
  8. echo "(c)2000-01 m&g software, Arminio_Grgic@Yahoo.com"
  9. echo.
  10.  
  11. if "%1"=="" goto nopars
  12.  
  13. : *** do the job ...
  14. for %%a in (%1) do avi2wavcmd %%a %2
  15.  
  16. : *** ... and beep 5 times when finished.
  17. echo 
  18. goto end
  19.  
  20. :nopars
  21. echo Syntax: WILDCARDS_SAMPLE filename_with_or_without_wildcards [destination_path\]
  22. echo.
  23. echo Example: WILDCARDS_SAMPLE g:\avis\*.avi
  24. echo          WILDCARDS_SAMPLE *.avi  c:\wavs\
  25. echo.
  26.  
  27. :end
  28.