Files
linux-workspace/bin/myip
2022-07-28 06:26:33 +02:00

9 lines
103 B
Bash
Executable File

#!/bin/bash
if [[ "$1" == "-d" ]]; then
curl -s ipinfo.io | jq
else
curl ipinfo.io/ip && echo
fi