#!/bin/sh
#
# Sort a file containing IPv4 addresses at the beginning of each line
exec sort -t . -k 1,1n -k 2,2n -k 3,3n -k 4,4n "$@"
