]> git.rmz.io Git - dotfiles.git/blob - bin/whatsmyip
lazyvim: replace LazyFile with their actual events
[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))