11 lines
188 B
Bash
11 lines
188 B
Bash
|
#! /usr/bin/env sh
|
||
|
cat marc.vcf |
|
||
|
qrencode \
|
||
|
--background "00000000" \
|
||
|
--foreground "000000FF" \
|
||
|
--level "L" \
|
||
|
--margin "1" \
|
||
|
--size "4" \
|
||
|
-t "SVG" \
|
||
|
--output "img/vcf.svg"
|