]> git.rmz.io Git - dotfiles.git/blob - bin/whatsmyip
zsh: gpo/gpfo aliases for git push origin (--force-with-lease)
[dotfiles.git] / bin / whatsmyip
1 #!/bin/bash
2
3 curl -4 -s ip.rmz.io && echo
4 ret4=$?
5 curl -6 -s ip.rmz.io && echo
6 ret6=$?
7
8 exit $((ret4 && ret6))