1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-09-19 09:44:05 -07:00
rc/sh/sortip

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 "$@"