jbsnake.....
I'm sure you can improve this

But I thought it was okay for my first attempt. I had some help from Isacklow , had to find a way to convert the incorrect naming extension
Code:
#!/bin/bash
# WAVtoOGG Converter
# Converts .wav files to .ogg files.
for i in *.wav ; do oggenc -o $i.ogg $i ; done
# Below converts the incorrect naming extension
# From .wav.ogg to just .ogg
badextension="*.wav.ogg";
match=".wav.ogg";
replacewith=".ogg";
for i in $( find -iname "$badextension" );
do
src=$i
tgt=$(echo $i | sed -e "s/$match/$replacewith/")
mv $src $tgt
done
saved on my system as wavtoogg.sh
run in the directory you need to convert.