Scripts/wait-until-internet.sh
2022-12-13 00:57:47 +01:00

3 řádky
85 B
Bash
Spustitelný soubor

#!/bin/sh
ping -c 1 -W 1 8.8.8.8; while [ $? != 0 ]; do ping -c 1 -W 1 8.8.8.8; done