Deprecated: Function set_magic_quotes_runtime() is deprecated in /var/hosting/woobcouk/public_html/wiki/wikka.php on line 836
woob.wiki : PingALotOfAddressesUsingBash

woob.wiki : PingALotOfAddressesUsingBash

HomePage :: Categories :: PageIndex :: RecentChanges :: RecentlyCommented :: Login/Register
#!/bin/bash

for ((i=1;i<=254;i++)); do
	    IP=193.60.61.$i
	    echo -n $IP,
	    RESULT=`ping -n -c 2 $IP | grep 'time=' | awk '{print $7}' | sed '/^time=*/!d; s///;q'`
	    if [ $RESULT -eq $RESULT 2> /dev/null ]; then
	            echo 9999
	    else
	            echo $RESULT
	    fi
	    sleep 1
done


-- DougBarry

There are no comments on this page. [Add comment]

Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by Wikka Wakka Wiki 1.1.5.0
Page was generated in 0.0077 seconds