mirror of
https://github.com/notwa/rc
synced 2025-03-19 16:05:38 -07:00
8 lines
135 B
Text
8 lines
135 B
Text
|
#!/usr/bin/zsh
|
||
|
isup() {
|
||
|
local c
|
||
|
curl -sLI -w '%{http_code}' -o /dev/null "$1" | read -r c
|
||
|
[ "${c:0:1}" -eq 2 ]
|
||
|
}
|
||
|
isup "$@"
|