diff options
Diffstat (limited to 'scripts/cidr2hex')
-rwxr-xr-x | scripts/cidr2hex | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/cidr2hex b/scripts/cidr2hex new file mode 100755 index 0000000..36974e0 --- /dev/null +++ b/scripts/cidr2hex @@ -0,0 +1,7 @@ +#!/bin/sh + +if [ x"$1" = x ]; then + echo "Usage: $0 <cidr>" >&2; exit 255 +fi + +./scripts/ip2hex "$(./scripts/cidr2ip "$1")" |