svg2pdf

Renders SVG images to PDF files using Cairo rendering

brewmacoslinux
Try with needOr install directly
Source

About

Renders SVG images to a PDF file (using Cairo)

Commands

svg2pdf

Examples

Convert a single SVG file to PDF$ svg2pdf input.svg output.pdf
Convert SVG to PDF with custom dimensions$ svg2pdf -w 800 -h 600 input.svg output.pdf
Batch convert multiple SVG files to PDF$ for file in *.svg; do svg2pdf "$file" "${file%.svg}.pdf"; done