This is an old revision of the document!
for i in in *.webm
do
echo $i
done
will echo those files. be aware that you're probably going to want to enclose $i in quotes, e.g.:
for i in *.webm
do
ffmpeg -i "$i" "$i.ogg"
done