mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 11:13:04 +03:00
6 lines
136 B
Bash
Executable file
6 lines
136 B
Bash
Executable file
#!/bin/bash
|
|
ip=$(dig +short myip.opendns.com @resolver1.opendns.com)
|
|
if [[ -z $ip || $ip == *"timed out"* ]]; then
|
|
exit
|
|
fi
|
|
echo $ip
|