From 9b53bb58f46c03bab75c57eecd6c2d83f33af6d5 Mon Sep 17 00:00:00 2001 From: Zac the Wise <75515581+TechWiz-3@users.noreply.github.com> Date: Fri, 9 Sep 2022 20:34:16 +1000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20NEW:=20internet=20connectivity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 832ddd1..78781bb 100644 --- a/README.md +++ b/README.md @@ -62,3 +62,11 @@ git_graph () { --pretty=format:'%Cred%h %Creset%<|(100,trunc)%s %C(bold blue)<%an>%Creset %Cgreen(%cd)%Creset%C(auto)%d' } ``` + +# Verify internet connectivity + +```bash +vic () { + ping google.com || while [[ $? != 0 ]] ; do ping google.com; done +} +```