shoxf/scanpn

8 lines
99 B
Plaintext
Raw Normal View History

2020-09-19 19:19:09 +00:00
#!/bin/bash
for fn in $@; do
echo "scanning $fn"
2021-03-25 01:10:29 +00:00
nmap -A -Pn $fn | tee -a "index/$fn.txt" &
2020-09-19 19:19:09 +00:00
done