This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.local/bin/qrgen

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"