1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-30 02:47:13 -07:00
rc/sh/sortip

9 lines
201 B
Plaintext
Raw Normal View History

2021-08-23 04:51:42 -07:00
#!/usr/bin/sh
# YES_ZSH YES_BASH YES_DASH YES_ASH
2021-08-23 04:51:42 -07:00
sortip() { ### @- sort lines numerically by IPv4 segments.
sort -t . -k 1,1n -k 2,2n -k 3,3n -k 4,4n "$@"
}
[ -n "${preload+-}" ] || sortip "$@"