shoxf/scansn

8 lines
96 B
Bash
Executable File

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