pzczyy 2020-04-16
#!/bin/bash Usage(){ echo $"USAGRE:/bin/bash $0" exit 1 } if [ "$#" -ne "0" ];then Usage fi CMD="ping -w 2 -c 2" IP="192.168.1." for n in `seq 1 254` do { $CMD $IP$n &> /dev/null if [ $? -eq 0 ];then echo "$IP$n" >> /root/ip fi }& done sleep 3 for i in `cat /root/ip` do echo "$i ansible_ssh_host=$i ansible_ssh_user=root ansible_ssh_pass=密码 ansible_ssh_port=22" >> ansible_hosts done