Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/g1eng/qrenconsole
Get your QR code within ASCII escape sequences.
https://github.com/g1eng/qrenconsole
cli qr-code qrcode qrcode-generator
Last synced: 1 day ago
JSON representation
Get your QR code within ASCII escape sequences.
- Host: GitHub
- URL: https://github.com/g1eng/qrenconsole
- Owner: g1eng
- License: gpl-2.0
- Created: 2021-12-14T11:13:09.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-14T11:20:14.000Z (about 3 years ago)
- Last Synced: 2024-11-16T06:12:42.424Z (2 months ago)
- Topics: cli, qr-code, qrcode, qrcode-generator
- Language: C++
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# QREnconsole
QREnconsole is a CLI tool to display QR code in terminal.
## Prerequisite
* [libqrencode](https://github.com/fukuchi/libqrencode) >= 4.1.0
* Unix-like OS or derivatives
* C++ compiler you like (C++11 or later should be supported)## Build and install
Linux
```shell
make
PREFIX=$HOME make install
```macOS
```shell
c++ main.cpp -Wall -o qrenconsole
PREFIX=$HOME/local make install
```## Usage
```shell
echo http://hoge.example.com | qrenconsole
{
echo rsync://srv.some.example.org
echo words are separately converted
} | qrenconsole
```## Author
Nomura Suzume