mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 08:48:27 -05:00
7 lines
156 B
Bash
Executable File
7 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# When you don't want to install `qrencode` yourself
|
|
input=$(printf '%s ' "$@")
|
|
input=$(echo "$input" | sed s/" "/%20/g)
|
|
curl "qrenco.de/$input"
|