mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-11-05 07:31:14 +00:00
459 B
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
