Skip to content

Instantly share code, notes, and snippets.

View arkadiusz-wieczorek's full-sized avatar

Arkadiusz Wieczorek arkadiusz-wieczorek

View GitHub Profile
@arkadiusz-wieczorek
arkadiusz-wieczorek / svg2pdf.bash
Created August 3, 2020 05:51 — forked from s417-lama/svg2pdf.bash
Reliable way to convert an SVG file to a PDF file using headless Chrome
#!/bin/bash
#
# Convert an SVG file to a PDF file by using headless Chrome.
#
if [ $# -ne 2 ]; then
echo "Usage: ./svg2pdf.bash input.svg output.pdf" 1>&2
exit 1
fi