#!/bin/sh ipaddrcheck --verbose --is-ipv4-range "$1" if [ $? -gt 0 ]; then echo "Error: $1 is not a valid IPv4 address range" exit 1 fi exit 0