dotfiles/bin/executable_externalip
Oliver Weyhmueller 4ec771a1c7
Update
* .gitconfig
* .chezmoi.yaml.tmpl
* .tmux.conf
* .vim
* .ssh
* .p10k.zsh
2022-01-30 20:56:16 +01:00

8 lines
136 B
Bash

#!/usr/bin/env zsh
echo -n 'IPv4: '
curl -4 https://ip.w9r.de/getip.php
echo
echo -n 'IPv6: '
curl -6 https://ip.w9r.de/getip.php
echo