Thread: FLAC Frontend
View Single Post
  #51  
Old 2004-12-01, 08:11 PM
jazzbo jazzbo is offline
 
Join Date: Nov 2004
Re: FLAC Frontend

Quote:
Originally Posted by crazee_canuck
..and in Linux:
Code:
for I in *.flac; do metaflac --show-md5sum --with-filename "$I" >> ffp.txt; done
or

Code:
metaflac --show-md5sum *.flac > foo.ffp.txt
... works for me.

You don't need --with-filename if you list more than one file on the command line. Any *nix shell should glob and produce all of the filenames on one line with the command line above. You should never have to use for loops to simulate globbing, as you have to in DOS.
Reply With Quote Reply with Nested Quotes