Brooklyn/bootspeak

8 lines
211 B
Plaintext
Raw Normal View History

_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
2021-11-09 12:08:09 +00:00
espeak "Welcome to Brooklyn NXT. My I.P. is $_IP. I repeat: $_IP."
else
espeak "Welcome to Brooklyn. No I.P. found."
fi