#!/bin/bash ip=`echo x.x.x.{1..10}` for ips in $ip do ping -w 5 $ips done
#!/bin/bash
ip=`echo x.x.x.{1..10}`
for ips in $ip
do
ping -w 5 $ips
done
#!/bin/bash ip=`echo x.x.x.{1..10}` for ips in $ip do ping -w 5 $ips done
#!/bin/bash
ip=`echo x.x.x.{1..10}`
for ips in $ip
do
ping -w 5 $ips
done