View Single Post
  #2  
Old 2005-04-03, 09:18 PM
uhclem
 
Re: Batch File .md5 question

for %%F in (*.flac) do md5sum *.flac > "%~n1".md5 "%%F"

The above line is wrong. Change it to:

md5sum *.flac > "%~n1.md5"

Last edited by uhclem; 2005-04-03 at 09:24 PM.
Reply With Quote Reply with Nested Quotes