I wrote the following script to build .mp3 filenames from the fids directory, maybe it's useful to others?
#!/bin/bash
for fid in `ls /drive0/fids/*1`
do
mp3file=`echo $fid | mawk '{printf("%s\n",substr($0,0,length))}'`
echo "mp3file: $mp3file"
ln $mp3file"0" "`grep title $fid | cut -f2 -d'='`.mp3"
echo `grep title $fid | cut -f2 -d'='`
done
I hard link the files as I am running micro_http in a chrooted Debian system.
The only problem I have is that the webserver doesn't handle space chars in filenames/URLs, I have tried both Netscape and IE clients (IE replaces spaces with ), still no luck.
Works fine for filenames with no spaces though.
Philb