qr2text

A CLI program to render a QR code directly on the terminal.

Examples

With a single argument:

$ qr2text https://rust-lang.org

Reading data from standard input:

$ cat /dev/urandom | tr -dc a-z0-9 | head -c 200 | qr2text

QR Examples


Build

From sources

  1. Install Rust

  2. Type

    bash $ cargo build --release

  3. Copy target/release/qr2text to /usr/local/bin, or any other directory in your $PATH.