mirror of
https://github.com/notwa/rc
synced 2024-11-05 02:59:03 -08:00
11 lines
207 B
Bash
Executable file
11 lines
207 B
Bash
Executable file
#!/usr/bin/sh
|
|
# YES_ZSH
|
|
# YES_BASH
|
|
# YES_DASH
|
|
# YES_ASH
|
|
|
|
sortip() { ### @- sort lines numerically by IPv4 segments.
|
|
sort -t . -k 1,1n -k 2,2n -k 3,3n -k 4,4n "$@"
|
|
}
|
|
|
|
[ -n "${preload+-}" ] || sortip "$@"
|