summaryrefslogtreecommitdiff
path: root/internet-status
blob: e562c23cb02f40f10d1ff10c2156a74d89f9192b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

wget -q --spider https://gentoo.org/

if [ $? -eq 0 ]; then
    echo "Online"
else
    # Backup
    wget -q --spider https://google.com/
    if [ $? -eq 0 ]; then
    	echo "Online"
    fi
    echo "Offline"
fi