1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 09:53:22 -07:00

add grop4 utility for isolating IPv4s

This commit is contained in:
Connor Olding 2022-09-01 18:16:58 -07:00
parent 84e8ae03ec
commit 2c3ea77cf7

11
sh/grop4 Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
# YES_ASH
grop4() { ### @- [`grop`](#grop) for IPv4s.
grep -oP -- '(?<=^|[^\d.])((0|1\d\d|2[0-4]\d|25[0-5]|[1-9]\d?)\.((?2))\.((?2))\.((?2)))(?=$|[^\d.])'
}
[ -n "${preload+-}" ] || grop4 "$@"