website/content/blog/creatingqrcodesfromterminal.md
2024-04-16 23:39:03 -04:00

459 B

title date draft tags medium_enabled
Creating QR Codes from the Terminal 2020-09-26T22:13:25-04:00 false
true

With the tool qrencode, it is surprisingly simple to create a QR code.

echo "https://brandonrozek.com" | qrencode -t ansiutf8

After viewing it on your terminal, you can save it to a PNG file

echo "https://brandonrozek.com" | qrencode -t png -o qrcode.png