Mac Pro
2 x 3 GHz Dual-Core Intel Xeon
8 GB RAM
Mac Pro
2 x 3 GHz Dual-Core Intel Xeon
8 GB RAM
The following bash script will give you all the files with their relative path.
Somehow you'll need to exclude the 'Music' directory there, and then move the files one directory down by adding 'music' to the path.
#! /bin/bash
for file in `find . -name \*.txt -print`
do
if [ -f $file ]
then
echo $file
fi
done
Sorry for this incomplete answer, but I haven't got the time to dig deeper in the bash scripting.
If I've well understood, he has already the music files in that directory and wants to join the covers...
Yes, indeed...
But depending on the size of the library ;)
Python or AppleScript could also do the job, you just need a bit of time to write it.