forked from Qortal/Brooklyn
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
|