Tomtom Export Script
From Geoqo
This gives an example of exporting to a bunch of tomtom files based on type:
# first, save what the user searched for
%saveset tmp:fortomtoms
# Then create a file per type:
%foreach type Unknown Traditional Multi
%search
set:tmp:fortomtoms
&&cache:subtype=%[type]
%export
system:cmd=gpsbabel -i geo -f %{file:loc} -o tomtom -F geocaches-%[type].ov2
%endforeach
Hopefully this works ;-)