Files
Ilya Shpigor 81254606dd Minor fixes
2021-03-14 12:22:29 +01:00

9 lines
121 B
Bash

#!/bin/bash
while ! ping -c 1 -W 1 google.com &> /dev/null
do
sleep 1
done
echo "The google.com server is available"