Skip to content

Instantly share code, notes, and snippets.

@marcin-gryszkalis
Last active August 29, 2015 14:10
Show Gist options
  • Save marcin-gryszkalis/a577c7ca9aa3dec5e5fe to your computer and use it in GitHub Desktop.
Save marcin-gryszkalis/a577c7ca9aa3dec5e5fe to your computer and use it in GitHub Desktop.
ipsort
#!/usr/bin/perl -nl
push @in, $_;
END {
print for
map substr($_, 4) =>
sort
map pack('C4' => /(\d+)\.(\d+)\.(\d+)\.(\d+)/)
. $_ => @in;
}
@marcin-gryszkalis
Copy link
Author

sort by ip

@marcin-gryszkalis
Copy link
Author

simplify

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment