Bash script to check if the internet is available

PHOTO EMBED

Fri Apr 26 2024 07:00:29 GMT+0000 (Coordinated Universal Time)

Saved by @edsonjorgef1 #cli #bash

#!/bin/bash

if : >/dev/tcp/8.8.8.8/53; then
  echo 'Internet available.'
else
  echo 'Offline.'
fi
content_copyCOPY