From 8bcee78f1a3375b660c5ba52510ef58938c67785 Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Tue, 16 Apr 2024 23:39:03 -0400 Subject: [PATCH] Edits --- content/blog/creatingqrcodesfromterminal.md | 7 +++++++ 1 file changed, 7 insertions(+) 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 +``` +