beddu/demo/carbon.sh
Manuele Sarfatti 76e2ad7db7 Complete docs
2025-05-11 16:11:47 +02:00

21 lines
459 B
Bash
Executable file

#!/usr/bin/env bash
. beddu.sh
line
pen purple "Hello, I'm your IP helper, here to help you will all your IP needs."
line
choose action "What would you like to do?" "Get my IP" "Get my location"
case "$action" in
"Get my IP")
run --out ip curl ipinfo.io/ip
line; pen "Your IP is $ip"
;;
"Get my location")
run --out location curl -s ipinfo.io/loc
line; pen "Your coordinates are $location"
;;
esac