mirror of
https://github.com/notwa/rc
synced 2024-11-05 02:29:06 -08:00
8 lines
292 B
Bash
Executable file
8 lines
292 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# compat: +ash +bash +dash +hush +ksh +mksh +oksh +osh +posh +yash +zsh
|
|
|
|
grop4() { ### @- [`grop`](#grop) for IPv4s.
|
|
/usr/bin/env grep -oP -- '(?<=^|[^\d.])((0|1\d\d|2[0-4]\d|25[0-5]|[1-9]\d?)\.((?2))\.((?2))\.((?2)))(?=$|[^\d.])'
|
|
}
|
|
|
|
[ -n "${preload+-}" ] || grop4 "$@"
|