shoxf/scan

8 lines
97 B
Bash
Executable File

#!/bin/bash
for fn in $@; do
echo "scanning $fn"
nmap -A -T4 $fn | tee -a "index/$fn.txt"
done