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.
No members have liked this post.