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=79ca2f0cOn 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

( apt-get install qrencode )