mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
7 lines
98 B
Bash
Executable file
7 lines
98 B
Bash
Executable file
#!/bin/sh
|
|
if [ -f '/usr/bin/curl' ]
|
|
then
|
|
curl ipinfo.io/ip
|
|
else
|
|
wget -qO- ipinfo.io/ip
|
|
fi
|