[SOLVED] Help with either bash or find...

Daniel B. Thurman dant at cdkkt.com
Fri May 9 20:24:23 UTC 2008


Gordon Messmer wrote:
|Daniel Challen wrote:
|> for musepack_file in $(find -name \*.mpc -type f) ; do
|> 	mppdec "$musepack_file" "$(echo $musepack_file | sed 
|s/mpc$/wav/)"
|> done
|>   
|
|Doesn't work for files with spaces in their names.

If you put the above code in bash, you can
control the IFS variable:

#!/bin/bash

# Uncomment if needed.
#DIR="/media/Music/MPC/"

FND=$(find $DIR -name \*.mpc -type f)

# Newline delimiter
IFS="
"
for musepack_file in $FND; do
 wav="$(echo $musepack_file | sed s/.mpc$/.wav/)"
 bw=$(baseline $wav)
 if [ ! -f $wav ]; then
  echo " + [$bw]"
  mppdec "$musepack_file" "$wav"
 else
  echo " - [$bw]"
 fi
done

No virus found in this outgoing message.
Checked by AVG. 
Version: 7.5.524 / Virus Database: 269.23.11/1422 - Release Date: 5/8/2008 5:24 PM
 




More information about the fedora-list mailing list