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