Files
bash-programming-from-scratch/manuscript/resources/code/BashScripting/until-ping.sh
2020-10-17 10:22:39 +02:00

9 lines
125 B
Bash

#!/bin/bash
until ping -c 1 -W 1 google.com &> /dev/null
do
sleep 1
done
echo "Сервер google.com доступен"