mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-28 22:02:18 +00:00
8 lines
217 B
Plaintext
8 lines
217 B
Plaintext
_IP=$(hostname -I) || true
|
|
if [ "$_IP" ]; then
|
|
printf "My IP address is %s\n" "$_IP"
|
|
espeak "Welcome to Brooklyn Titan NXT. My I.P. is $_IP. I repeat: $_IP."
|
|
else
|
|
espeak "Welcome to Brooklyn. No I.P. found."
|
|
fi
|