37 lines
726 B
Markdown
37 lines
726 B
Markdown
# nu_plugin_qr_maker
|
|
|
|
A [nushell](https://www.nushell.sh/) plugin to create qr code in terminal
|
|
|
|
## Examples
|
|
|
|
```bash
|
|
~> "https://google.com" | to qr
|
|
```
|
|
|
|

|
|
|
|
## Installing
|
|
|
|
* using [nupm](https://github.com/nushell/nupm)
|
|
|
|
```bash
|
|
git clone https://github.com/FMotalleb/nu_plugin_qr_maker.git
|
|
nupm install --path nu_plugin_qr_maker -f
|
|
```
|
|
|
|
* or compile manually
|
|
|
|
```bash
|
|
git clone https://github.com/FMotalleb/nu_plugin_qr_maker.git
|
|
cd nu_plugin_qr_maker
|
|
cargo build
|
|
register target/debug/nu_plugin_qr_maker
|
|
```
|
|
|
|
* or using cargo
|
|
|
|
```bash
|
|
cargo install nu_plugin_qr_maker
|
|
register ~/.cargo/bin/nu_plugin_qr_maker
|
|
```
|