diff options
-rwxr-xr-x | scripts/check-ipv4-ipv6.pl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/check-ipv4-ipv6.pl b/scripts/check-ipv4-ipv6.pl deleted file mode 100755 index 0816ebee..00000000 --- a/scripts/check-ipv4-ipv6.pl +++ /dev/null @@ -1,12 +0,0 @@ -#! /usr/bin/perl - -# Trivial script to check for valid IPv4 or IPv6 address - -use strict; -use NetAddr::IP; - -foreach my $addr (@ARGV) { - die "$addr: not valid a valid IPv4 or IPv6 address\n" - unless new NetAddr::IP $addr; -} - |