wait-until-internet.sh

This commit is contained in:
whiteline 2022-12-13 00:57:47 +01:00
parent 11528c5ecb
commit e33b31de80

2
wait-until-internet.sh Executable file
View File

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