mirror of
https://github.com/notwa/rc
synced 2024-11-05 07:29:04 -08:00
8 lines
197 B
Bash
Executable file
8 lines
197 B
Bash
Executable file
#!/usr/bin/sh
|
|
# compat: +ash +bash +dash +zsh
|
|
|
|
sortip() { ### @- sort lines numerically by IPv4 segments.
|
|
sort -t . -k 1,1n -k 2,2n -k 3,3n -k 4,4n "$@"
|
|
}
|
|
|
|
[ -n "${preload+-}" ] || sortip "$@"
|