Need to quickly generate a QR code from the command line? (twitter.com) 1 points by eidam 4y ago ↗ HN
[–] labawi 4y ago ↗ Because web services are always better? /sA simple utility not dependent on internet: qrencode -t ansi https://link.com Or if you like an image: qrencode "$something" -o a.png && eog a.png Copy-paste friendly prompt: read a && qrencode -o a.png -- "$a" && eog a.png
1 comment
[ 30.3 ms ] story [ 367 ms ] threadA simple utility not dependent on internet:
Or if you like an image: Copy-paste friendly prompt: