Bash oneliner to batch export PDFs in inkscape

Note to Self
Here is your quick bash oneliner to batch export PDFs from SVGs using the inkscape command line.

for i in *.svg; do f=${i%.*}; inkscape --export-pdf="$f.pdf" "$f.svg"; done;