FollieHiyuki-dotfiles/home/.local/bin/qrgen

7 lines
156 B
Plaintext
Raw Normal View History

2021-03-13 10:34:45 -05:00
#!/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"