elvish_config/aliases/publicip.elv

10 lines
269 B
Plaintext
Raw Normal View History

2021-12-11 21:09:02 +00:00
edit:add-var publicip~ {|@argv|
use framagit.org/benjamin.vaudour/elv-lib/mods/common
2021-12-11 21:09:02 +00:00
var f = {|t|
var l = (common:cond (eq $t -6) 'IPv6: ' 'IPv4: ')
e:curl $t ifconfig.co/ip 2> /dev/null | each {|ip| echo (styled $l bold yellow) $ip}
2020-03-13 14:03:36 +00:00
}
$f -4
$f -6
}