summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2015-06-12 22:38:50 -0500
committerepochqwert <epoch@hacking.allowed.org>2015-06-12 22:38:50 -0500
commitd8104b6c07c5ec374a4af4f2812b6033f5e69988 (patch)
tree692cecdf1751504899edaae9dc7c27797ad5dd86 /README
parenta05876c9b860f1d5fa786746519ccb8b01db79e3 (diff)
downloadmisc-d8104b6c07c5ec374a4af4f2812b6033f5e69988.tar.gz
misc-d8104b6c07c5ec374a4af4f2812b6033f5e69988.zip
basic README for just two tools so far.
Diffstat (limited to 'README')
-rw-r--r--README18
1 files changed, 18 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..eaf4608
--- /dev/null
+++ b/README
@@ -0,0 +1,18 @@
+tools:
+
+ipgen: generates IPs based on IP and netmask.
+example: ipgen 192.168.0.4 255.255.255.252
+outputs:
+192.168.0.4
+192.168.0.5
+192.168.0.6
+192.168.0.7
+
+cidr: converts cidr notation to IP and netmask.
+example: cidr 192.168.0.4/30
+outputs:
+192.168.0.4 255.255.255.252
+
+these two programs were made to be used together like:
+
+ipgen $(cidr 192.168.0.4/30)