On Aug 7, 2007, at 4:04 PM, Andrew Sackville-West wrote:
oh. I see. That is the right one. but, doesn't really work if you need
to recurse into stuff does it, which was my problem with that find in
the previous post.

To do this with find, I'd try something like this:

find . -name "*.wav" -exec lame -h -b 160 \{\} \{\}.mp3 \;

It's possible spaces will bite you here, too ... If you actually attempt this on filenames with spaces, test it first and see if you need to add another level of quoting. Note that you have to escape the curly brackets and the semicolon so find sees them, instead of bash trying to interpret them. Find's syntax for the "exec" action is kind of awkward-looking, but this can be an extremely useful tool. For example, I once had to decompress a bunch of gzipped files in a directory tree, so I did something like this:

find . -name "*.gz" -exec gunzip \{\} \;

Note that find -exec can also do a lot of damage in a hurry. If you're doing anything remotely destructive, you might want to substitute "echo \{\}" for your command the first time you run it, just to make sure find is only finding the stuff you want it to! Also, before you start thinking of doing anything resembling "-exec rm" note that find has a built-in ability to delete files.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to