mirror of
https://github.com/byReqz/status.git
synced 2024-11-21 23:33:14 +00:00
13 lines
216 B
Bash
13 lines
216 B
Bash
|
#!/bin/env bash
|
||
|
|
||
|
if [[ -z "$ping_hosts" ]];then
|
||
|
ping_hosts="nils.lol"
|
||
|
fi
|
||
|
if [[ -z "$http_hosts" ]];then
|
||
|
http_hosts="https://nils.lol"
|
||
|
fi
|
||
|
|
||
|
function get_code {
|
||
|
http_results="$(curl -s -I $http_hosts | grep HTTP)"
|
||
|
}
|