dotfiles/.config/fish/functions/pubip.fish

8 lines
135 B
Fish
Raw Normal View History

2022-07-07 18:32:27 +02:00
function pubip
if type -q jq
command curl -s ipinfo.io | command jq
else
command curl -s ipinfo.io
end
end