Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Use a Linux box as an iTunes music server' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Use a Linux box as an iTunes music server
Authored by: semios on Jul 28, '03 11:14:54PM
Maybe you could do something like this:

flat_dir=all_mp3s
for file in $(find . -name "*.mpg"); do
     ln -s $file $flat_dir/$(basename $file)
done

Well, if it'll work with symbolic links then that should do it.

[ Reply to This | # ]