website/content/blog/creatingqrcodesfromterminal.md

16 lines
315 B
Markdown
Raw Normal View History

2020-09-28 22:52:34 -04:00
---
title: "Creating QR Codes from the Terminal"
date: 2020-09-26T22:13:25-04:00
draft: false
tags: []
2023-01-05 14:04:45 -05:00
medium_enabled: true
2020-09-28 22:52:34 -04:00
---
With the tool `qrencode`, it is surprisingly simple to create a QR code.
```bash
echo "https://brandonrozek.com" | qrencode -t ansiutf8
```
2022-06-11 22:54:02 -04:00
![](/files/images/blog/20200926221423.png)