open an editor and type in the script below
ever done programming in QBASIC or anything like that? Same deal, just now your using BASH which is not only a shell, but has its own scripting language-------and many of the commands are similar to BASIC
since youve got multiple directories we will add a little twist to this:
#!/bin/bash
find /home/gameguru -name "*.ogg" -print > list.txt
while read i
do
sox "$i" "$i".mp3
done < list.txt
save that as is then do this to it
chmod +rwx <its_name>
then run it with ./<its_name>
assuming your version of sox has mp3 and ogg support and none of your filenames are really funky, that should do it quick and dirty like
if your music is somewhere other than /home somewhere........change the line that has "find" in it to start searching above wherever the music is
its should re-encode all of them into wherever they are so you will have .ogg and .ogg.mp3 files with the same names