dotfiles/.config/fish/functions/pubip.fish
2022-07-07 11:32:27 -05:00

8 lines
135 B
Fish

function pubip
if type -q jq
command curl -s ipinfo.io | command jq
else
command curl -s ipinfo.io
end
end