You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
382 B
22 lines
382 B
#!/bin/bash
|
|
# txt2qrpng.sh
|
|
# GPLv3+
|
|
# Give this a name of a text file and it will produce a
|
|
# series of .png files encoding the data in QR codes.
|
|
# Use:
|
|
# txt2qrpng.sh foo.txt
|
|
mkdir -p QR
|
|
|
|
cat $1 | \
|
|
qrencode \
|
|
--type=png \
|
|
-o QR/$1.png && exit
|
|
|
|
cat $1 | \
|
|
qrencode \
|
|
-S \
|
|
-v 40 \
|
|
-l L \
|
|
--type=png \
|
|
-o QR/$1.png
|