cv.marc/vcard.sh

12 lines
194 B
Bash
Raw Normal View History

2025-02-16 21:09:11 +01:00
#! /usr/bin/env sh
2025-02-18 01:07:21 +01:00
cat "vcard.vcf" |
2025-02-16 21:09:11 +01:00
qrencode \
2025-02-16 22:29:57 +01:00
--background "00000000" \
2025-02-16 21:09:11 +01:00
--foreground "000000FF" \
--level "L" \
--margin "1" \
--size "4" \
-t "SVG" \
2025-02-18 01:07:21 +01:00
--output "img/vcard.svg"