Converting SVGs to EPS so so pdflatex can convert them to pdf and embed them to your document,… overhead, ikr?
find . -name "*.svg" | xargs -I% inkscape --without-gui % -E %.eps --export-ignore-filters --export-ps-level=3
for f in *.svg.eps; do mv "$f" "${f/.svg/}"; done
or
#!/bin/sh
for file in "$@"; do
if test "${file##*.}" = "svg" -a \( ! -e "${file%.svg}.eps" -o "$file" -nt "${file%.svg}.eps" \)
then
inkscape "$file" -E "${file%.svg}.eps"
fi
done