Live data from Hacker News

Need to quickly generate a QR code from the command line?

twitter.com

1–2 of 2 posts

Re: Need to quickly generate a QR code from the command line?

#2
Because web services are always better? /s

A 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