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