mirror of
https://github.com/ThunixdotNet/monurbox.git
synced 2026-01-24 03:50:18 +00:00
12 lines
188 B
Bash
Executable File
12 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
export SITE=$1
|
|
|
|
# Attempt to connect to the Gemini server on port 1965
|
|
timeout 2 bash -c "</dev/tcp/${SITE}/1965" &> /dev/null
|
|
|
|
if [ $? -ne 0 ]; then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|