mirror of
https://github.com/ellysh/bash-programming-from-scratch.git
synced 2026-01-26 07:43:42 +00:00
9 lines
125 B
Bash
9 lines
125 B
Bash
#!/bin/bash
|
|
|
|
until ping -c 1 -W 1 google.com &> /dev/null
|
|
do
|
|
sleep 1
|
|
done
|
|
|
|
echo "Сервер google.com доступен"
|