Post
Topic
Board Beginners & Help
Re: Batch QR codes?
by
WorldOfBitcoin
on 18/12/2012, 10:56:19 UTC
qrencode -o test.png add2.txt

returns a singular file png of "add2.txt"



qrencode -o test.png $add2.txt


returns a singular file png of "add2"




qrencode -o $test.png $add2.txt

does nothing


What am I missing?


my txt file looks like this

https://dl-web.dropbox.com/get/add2.txt?w=79ca2f0c


On linux you can use qrencode in a script to do this

I have Ubuntu running on VMware.

can you show an example?

for a simple addr list do not even need a script

for x in `cat addrlist.txt`; do qrencode -o $x.png $x; done

EDIT: you need install qrencode first Wink ( apt-get install qrencode )