summaryrefslogtreecommitdiffstats
path: root/Reaktor/repos/dnsmap/dnsmap-bulk.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Reaktor/repos/dnsmap/dnsmap-bulk.sh')
-rwxr-xr-xReaktor/repos/dnsmap/dnsmap-bulk.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/Reaktor/repos/dnsmap/dnsmap-bulk.sh b/Reaktor/repos/dnsmap/dnsmap-bulk.sh
deleted file mode 100755
index 574aba22..00000000
--- a/Reaktor/repos/dnsmap/dnsmap-bulk.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-if [[ $# -ne 1 && $# -ne 2 ]]
-then
- echo "usage: `basename $0` <domains-file> [results-path]";
- echo "e.g.:";
- echo "`basename $0` domains.txt";
- echo "`basename $0` domains.txt /tmp/";
- exit
-fi
-for i in `cat $1`
-do
- if [[ $# -eq 1 ]]
- then
- dnsmap $i
- elif [[ $# -eq 2 ]]
- then
- dnsmap $i -r $2
- fi
-done