This command-line tool converts the list of IP addresses in CIDR format to a list of IP addresses.
Print the list of IPs for the given addresses in CIDR format:
$ go run main.go --clean 192.168.11.0/30 127.0.0.1/32
192.168.11.1
192.168.11.2
127.0.0.1
To run the tool with Docker use the following command:
$ docker run --rm dimw/cidrls --clean 192.168.11.0/30 127.0.0.1/32
192.168.11.1
192.168.11.2
127.0.0.1
Content type
Image
Digest
Size
1.8 MB
Last updated
over 7 years ago
docker pull dimw/cidrls