create/generate qr code with qrencode in ubuntu
Oct
14
1
1
You can create qr codes easily in Ubuntu using qrencode. You can install it like so:
sudo apt-get install qrencode
and then create the qr code with the following command:
qrencode -o /path/to/qrcode.png -s 10 'http://example.com'
the `-s` option flag is the size of dot (pixel). The default is 3.