CPB2017

Script 1B

Jun 21st, 2017
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. COUNTER=$1
  4.  
  5. while [ $COUNTER -lt 254 ]
  6. do
  7. echo $COUNTER
  8. ping -c 1 192.168.1.$COUNTER | grep 'ms'
  9. COUNTER=$(( $COUNTER + 1 ))
  10. done
Add Comment
Please, Sign In to add comment