Legg følgende inn i fila iplist.sh
#!/bin/bash # filename: iplist.sh # usage: ./iplist.sh 192.168.1.0/24 > iplist.txt nmap -sL $1 --randomize_hosts | grep '^Host' |...