diff --git a/content/blog/creatingqrcodesfromterminal.md b/content/blog/creatingqrcodesfromterminal.md index 852f16d..5ade168 100644 --- a/content/blog/creatingqrcodesfromterminal.md +++ b/content/blog/creatingqrcodesfromterminal.md @@ -13,3 +13,10 @@ echo "https://brandonrozek.com" | qrencode -t ansiutf8 ``` ![](/files/images/blog/20200926221423.png) + +After viewing it on your terminal, you can save it to a PNG file + +```bash +echo "https://brandonrozek.com" | qrencode -t png -o qrcode.png +``` +