Add whois-firefox, opens whois result in osm.org

This commit is contained in:
flyingscorpio@arch-desktop 2020-12-05 23:54:37 +01:00
parent 7cc131b037
commit 92145b54c7

View file

@ -119,3 +119,11 @@ calc() {
echo -n "$* = "
python -c "print($*)"
}
whois-firefox() {
mkfifo pipe; cat pipe &
coords=$(whois "$1" | tee pipe | grep geoloc | sed -r 's/^geoloc:\s+//' | sort | uniq)
slash_coords=${coords// /\/}
firefox "https://osm.org/search?query=$coords#map=16/$slash_coords"
rm pipe
}