[bin/qrwifi] Show overview of info in QR code

This commit is contained in:
Midgard 2023-07-26 18:22:11 +02:00
parent b83a91e303
commit 35b6c40c35
Signed by untrusted user who does not match committer: midgard
GPG key ID: 511C112F1331BBB4

View file

@ -30,14 +30,11 @@ if [ -z "$pw" ]; then
echo "Couldn't find password for network \`$ssid\`"
echo "Use $0 <ssid> <password>" to share a specific SSID and password
exit 1
else
echo "Sharing network \`$ssid\`"
fi
if [ -z "$ssid" ] || [ -z "$pw" ]; then
echo "Missing SSID or password"
exit 1
fi
echo "$(tput bold)SSID$(tput sgr0) $ssid"
echo "$(tput bold)Password$(tput sgr0) $pw"
if printf '%s' "$pw" | grep -qF ';'; then
echo "Password contains ;, I didn't look up how to handle that case"
exit 1