#!/bin/bash

# WildlifeSystems
#
# This script is part of the WildlifeSystems project. For further information
# please refer to https://docs.wildlife.systems, or for more information on
# the project itself, please refer to https://wildlife.systems.

ping -c1 $1 2>&1 > /dev/null
while [[ $? != 0 ]];
do
	sleep 1
	ping -c1 $1 2>&1 > /dev/null
done
