mirror of
https://github.com/notwa/rc
synced 2024-11-05 07:19:02 -08:00
8 lines
246 B
Bash
Executable file
8 lines
246 B
Bash
Executable file
#!/usr/bin/sh
|
|
# compat: +ash +bash +dash +hush +ksh +mksh +oksh +osh +posh +yash +zsh
|
|
|
|
sortip() { ### @- sort lines numerically by IPv4 segments.
|
|
LC_ALL=C sort -t . -k 1,1n -k 2,2n -k 3,3n -k 4,4n "$@"
|
|
}
|
|
|
|
[ -n "${preload+-}" ] || sortip "$@"
|