add server list json and sample script

This commit is contained in:
Nayan
2025-08-25 19:34:45 -04:00
parent c010de8914
commit bbd377193e
2 changed files with 24 additions and 0 deletions

10
startserver.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
while true; do
read -n 1 -p "" input
if [[ $input == "q" ]]; then
break
fi
echo "hello"
sleep 3
done