mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 18:50:34 -05:00
14 lines
294 B
Markdown
14 lines
294 B
Markdown
---
|
|
title: "Creating QR Codes from the Terminal"
|
|
date: 2020-09-26T22:13:25-04:00
|
|
draft: false
|
|
tags: []
|
|
---
|
|
|
|
With the tool `qrencode`, it is surprisingly simple to create a QR code.
|
|
|
|
```bash
|
|
echo "https://brandonrozek.com" | qrencode -t ansiutf8
|
|
```
|
|
|
|
![](/files/images/blog/20200926221423.png)
|