scanpn 99 B

12345678
  1. #!/bin/bash
  2. for fn in $@; do
  3. echo "scanning $fn"
  4. nmap -A -Pn $fn | tee -a "index/$fn.txt" &
  5. done