İşte yaptığım şey. İşe benziyordu (ama ne yazık ki bpm-tag birçok şarkı için yeterince doğru değildi ...).
#!/bin/bash
cd /path/to/my/library
while IFS= read -r -d '' FILE; do
BPM=$(bpm-tag -f -n "$FILE" 2>&1 | sed "s/.mp3:/%/" | cut -d'%' -f2 | sed "s/ BPM//" | sed "s/^ //" | cut -d'.' -f1)
#bpm-tag has its output in stderr, so I use 2>&1 to redirect it to stdout, then format it with sed and cut
if [ "$BPM" -le 130 ]
then cp "$FILE" /path/to/my/library/Slow/
elif [ "$BPM" -le 180 ]
then cp "$FILE" /path/to/my/library/Medium/
else cp "$FILE" /path/to/my/library/Fast/
fi
done < <(find . -type f -name '*.mp3' -print0)
Burada yapıyor
while IFS= read -r -d '' FILE; do
echo "$FILE"
done < <(find . -type f -name '*.mp3' -print0)
klasörde veya alt klasörlerinde bulunan .mp3 (-name '* .mp3') ile biten tüm dosyaları (-tipi f) yazdırır. Anladığım kadarıyla, -print0 ve -r -d '' seçenekleri biçimlendirme amaçlıdır, ancak gerçekten nasıl çalıştığını anlamadım.